body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Abel-Regular';
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Abel-Regular';
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Abel-Regular';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Abel-Regular';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Abel-Regular';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #7d9e45 !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ec1722 !important;
}
.bg-danger {
  background-color: #13171f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7d9e45 !important;
  border-color: #7d9e45 !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: #4d622b !important;
  border-color: #4d622b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4d622b !important;
  border-color: #4d622b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b67ce !important;
  border-color: #6b67ce !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: #3b36a8 !important;
  border-color: #3b36a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
  color: #173200 !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: #63da00 !important;
  border-color: #63da00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #173200 !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #13171f !important;
  border-color: #13171f !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !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: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212428 !important;
  border-color: #212428 !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: #7d9e45;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4d622b !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: #7d9e45 !important;
  border-color: #7d9e45 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b67ce;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b36a8 !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: #6b67ce !important;
  border-color: #6b67ce !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8fff32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #63da00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #173200 !important;
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec1722;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9f0d15 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #13171f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #13171f !important;
  border-color: #13171f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.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: #212428 !important;
  border-color: #212428 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.text-primary {
  color: #7d9e45 !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ec1722 !important;
}
.text-danger {
  color: #13171f !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #455726 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #37329d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5ccb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #910c13 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #839ab9 !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: #7d9e45;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ec1722;
}
.alert-danger {
  background-color: #13171f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7d9e45;
  border-color: #7d9e45;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7d9e45;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b9d093;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefffe;
}
.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: #fbd4d6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfc7d8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Abel-Regular';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #7d9e45 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Abel-Regular';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #7d9e45;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7d9e45;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7d9e45;
}
.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: #7d9e45;
  border-bottom-color: #7d9e45;
}
.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: #7d9e45 !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: #6b67ce !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='%237d9e45' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e !important;
  transform-style: preserve-3d;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn {
  position: relative;
  transition: 0.4s all !important;
  border: none !important;
  align-items: baseline;
}
.custom-section-btn .btn-black {
  color: #7d9e45 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #7d9e45 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #7d9e45 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #7d9e45 !important;
  background: #FFFFFF !important;
  transform: translateY(-5px);
}
.cid-uFahthcfIA {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFahthcfIA .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFahthcfIA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFahthcfIA .menu_box .navbar.opened,
  .cid-uFahthcfIA .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFahthcfIA nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFahthcfIA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFahthcfIA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFahthcfIA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFahthcfIA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFahthcfIA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFahthcfIA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-body .mbr-text,
  .cid-uFahthcfIA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFahthcfIA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFahthcfIA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFahthcfIA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFahthcfIA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFahthcfIA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFahthcfIA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFahthcfIA .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .nav-item {
    margin: 0 !important;
  }
}
.cid-uFahthcfIA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFahthcfIA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFahthcfIA .nav-item .nav-link:hover::before,
.cid-uFahthcfIA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFahthcfIA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFahthcfIA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFahthcfIA .offcanvas_box {
    display: none;
  }
}
.cid-uFahthcfIA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFahthcfIA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFahthcfIA .container {
  display: flex;
  margin: auto;
}
.cid-uFahthcfIA .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFahthcfIA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFahthcfIA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFahthcfIA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .navbar-nav {
    margin: 0;
  }
}
.cid-uFahthcfIA .dropdown-menu,
.cid-uFahthcfIA .navbar.opened {
  background-color: false !important;
}
.cid-uFahthcfIA .nav-item:focus,
.cid-uFahthcfIA .nav-link:focus {
  outline: none;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFahthcfIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFahthcfIA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFahthcfIA .navbar.opened {
  transition: all 0.3s;
}
.cid-uFahthcfIA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFahthcfIA .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFahthcfIA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFahthcfIA .navbar.collapsed {
  justify-content: center;
}
.cid-uFahthcfIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFahthcfIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFahthcfIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFahthcfIA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFahthcfIA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFahthcfIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFahthcfIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFahthcfIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFahthcfIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFahthcfIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFahthcfIA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFahthcfIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFahthcfIA .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-uFahthcfIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFahthcfIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFahthcfIA .dropdown-item.active,
.cid-uFahthcfIA .dropdown-item:active {
  background-color: transparent;
}
.cid-uFahthcfIA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFahthcfIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFahthcfIA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFahthcfIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFahthcfIA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFahthcfIA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFahthcfIA .navbar {
    height: 70px;
  }
  .cid-uFahthcfIA .navbar.opened {
    height: auto;
  }
  .cid-uFahthcfIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFahthcfIA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFahthcfIA .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFahthcfIA .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFahthcfIA .text_widget {
  margin-bottom: 32px;
}
.cid-uFahthcfIA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFahthcfIA .text_widget a:hover,
.cid-uFahthcfIA .text_widget a:focus {
  opacity: .8;
}
.cid-uFahthcfIA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFahthcfIA .navbar-caption {
  color: #ffffff;
}
.cid-uFahthcfIA .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFahthcfIA .mbr-section-subtitle,
.cid-uFahthcfIA .text_widget,
.cid-uFahthcfIA .mbr-section-btn {
  text-align: center;
}
.cid-uFahthcfIA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFdzzsGomS {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFdzzsGomS .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFdzzsGomS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdzzsGomS .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS .line {
    margin-bottom: 10rem;
  }
}
.cid-uFdzzsGomS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdzzsGomS p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFdzzsGomS {
    align-items: center;
  }
  .cid-uFdzzsGomS .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFdzzsGomS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFdzzsGomS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFdzzsGomS .content-wrap {
    width: 100%;
  }
}
.cid-uFdzzsGomS .mbr-section-subtitle,
.cid-uFdzzsGomS .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFdzzsGomS .mbr-text,
.cid-uFdzzsGomS .mbr-section-btn {
  text-align: left;
}
.cid-uFdzzsGomS .mbr-section-title {
  color: #ffffff;
}
.cid-uDTwO09pfK {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDTwO09pfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDTwO09pfK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDTwO09pfK .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uDTwO09pfK .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uDTwO09pfK .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uDTwO09pfK .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uDTwO09pfK .content-wrapper .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #7d9e45;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uDTwO09pfK .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDTwO09pfK .content-wrapper .title-wrapper .mbr-section-title span {
  color: #7d9e45;
}
.cid-uDTwO09pfK .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDTwO09pfK .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDTwO09pfK .image-wrapper img {
    height: 350px;
  }
}
.cid-uDTwO09pfK .mbr-section-title {
  color: #404349;
}
.cid-uDTwO09pfK .mbr-desc {
  color: #b19a7c;
}
.cid-uDTwO09pfK .mbr-text {
  color: #404349;
}
.cid-uDTwO09pfK .mbr-desc,
.cid-uDTwO09pfK .desc-wrapper {
  color: #ffffff;
}
.cid-thXRijuFis {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXRijuFis .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXRijuFis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXRijuFis .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-thXRijuFis .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-thXRijuFis .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thXRijuFis .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thXRijuFis .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thXRijuFis .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thXRijuFis .mbr-section-head {
  width: 100%;
}
.cid-thXRijuFis .mbr-section-title {
  color: #7d9e45;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .mbr-section-title {
    text-align: center;
  }
}
.cid-thXRijuFis .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thXRijuFis .card-row {
  align-items: stretch;
}
.cid-thXRijuFis .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-thXRijuFis .item {
    margin-top: 30px;
  }
}
.cid-thXRijuFis .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thXRijuFis .item-wrapper {
    padding: 20px;
  }
}
.cid-thXRijuFis .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXRijuFis .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-thXRijuFis .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #16181c, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-thXRijuFis .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thXRijuFis .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXRijuFis .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-thXRijuFis .card-title {
  position: relative;
  z-index: 5;
  color: #7d9e45;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .card-title {
    margin-bottom: 10px;
  }
}
.cid-thXRijuFis .card-text {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-thXRijuFis .card-text a {
  transition: .4s all;
}
.cid-thXRijuFis .card-text a:hover {
  color: #7d9e45 !important;
}
.cid-thXRijuFis .mbr-section-btn {
  margin-top: 40px;
  text-align: center;
}
.cid-thXRijuFis .display-7 > .mbr-iconfont {
  font-size: 1rem;
}
.cid-thXLfwRkmP {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  align-items: center;
}
.cid-thXLfwRkmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXLfwRkmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXLfwRkmP .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thXLfwRkmP .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-thXLfwRkmP .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-thXLfwRkmP .container {
    max-width: 540px;
  }
}
.cid-thXLfwRkmP .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thXLfwRkmP .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thXLfwRkmP .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thXLfwRkmP .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thXLfwRkmP .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thXLfwRkmP .mbr-section-title {
  color: #C4CFDE;
}
.cid-thXLfwRkmP .mbr-section-subtitle {
  color: #FF014E;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-thXLfwRkmP .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-thXLfwRkmP .card-row {
  align-items: stretch;
}
.cid-thXLfwRkmP .card {
  margin-top: 30px;
}
.cid-thXLfwRkmP .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
.cid-thXLfwRkmP .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXLfwRkmP .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-thXLfwRkmP .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-thXLfwRkmP .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-thXLfwRkmP .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-thXLfwRkmP .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-thXLfwRkmP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-thXLfwRkmP .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #7d9e45;
}
.cid-thXLfwRkmP .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-thXLfwRkmP .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-thXLfwRkmP .card-title,
.cid-thXLfwRkmP .iconfont-wrapper {
  text-align: center;
  color: #7d9e45;
}
.cid-thXOPqy2QT {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXOPqy2QT .mbr-section-head {
  width: 100%;
}
.cid-thXOPqy2QT .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uEsWtA3Yj9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsWtA3Yj9 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 100%;
  }
  .cid-uEsWtA3Yj9 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uEsWtA3Yj9 .item-wrap {
  width: 100%;
}
.cid-uEsWtA3Yj9 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uEsWtA3Yj9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uEsWtA3Yj9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uEsWtA3Yj9 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uEsWtA3Yj9 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-links {
    padding-top: 20px;
  }
}
.cid-uEsWtA3Yj9 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .list {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uEsWtA3Yj9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uEsWtA3Yj9 .list a:hover:before {
  width: 100%;
}
.cid-uEsWtA3Yj9 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uEsWtA3Yj9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uEsWtA3Yj9 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFahthcfIA {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFahthcfIA .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFahthcfIA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFahthcfIA .menu_box .navbar.opened,
  .cid-uFahthcfIA .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFahthcfIA nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFahthcfIA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFahthcfIA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFahthcfIA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFahthcfIA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFahthcfIA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFahthcfIA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-body .mbr-text,
  .cid-uFahthcfIA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFahthcfIA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFahthcfIA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFahthcfIA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFahthcfIA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFahthcfIA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFahthcfIA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFahthcfIA .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .nav-item {
    margin: 0 !important;
  }
}
.cid-uFahthcfIA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFahthcfIA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFahthcfIA .nav-item .nav-link:hover::before,
.cid-uFahthcfIA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFahthcfIA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFahthcfIA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFahthcfIA .offcanvas_box {
    display: none;
  }
}
.cid-uFahthcfIA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFahthcfIA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFahthcfIA .container {
  display: flex;
  margin: auto;
}
.cid-uFahthcfIA .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFahthcfIA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFahthcfIA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFahthcfIA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .navbar-nav {
    margin: 0;
  }
}
.cid-uFahthcfIA .dropdown-menu,
.cid-uFahthcfIA .navbar.opened {
  background-color: false !important;
}
.cid-uFahthcfIA .nav-item:focus,
.cid-uFahthcfIA .nav-link:focus {
  outline: none;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFahthcfIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFahthcfIA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFahthcfIA .navbar.opened {
  transition: all 0.3s;
}
.cid-uFahthcfIA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFahthcfIA .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFahthcfIA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFahthcfIA .navbar.collapsed {
  justify-content: center;
}
.cid-uFahthcfIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFahthcfIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFahthcfIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFahthcfIA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFahthcfIA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFahthcfIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFahthcfIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFahthcfIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFahthcfIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFahthcfIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFahthcfIA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFahthcfIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFahthcfIA .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-uFahthcfIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFahthcfIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFahthcfIA .dropdown-item.active,
.cid-uFahthcfIA .dropdown-item:active {
  background-color: transparent;
}
.cid-uFahthcfIA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFahthcfIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFahthcfIA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFahthcfIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFahthcfIA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFahthcfIA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFahthcfIA .navbar {
    height: 70px;
  }
  .cid-uFahthcfIA .navbar.opened {
    height: auto;
  }
  .cid-uFahthcfIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFahthcfIA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFahthcfIA .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFahthcfIA .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFahthcfIA .text_widget {
  margin-bottom: 32px;
}
.cid-uFahthcfIA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFahthcfIA .text_widget a:hover,
.cid-uFahthcfIA .text_widget a:focus {
  opacity: .8;
}
.cid-uFahthcfIA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFahthcfIA .navbar-caption {
  color: #ffffff;
}
.cid-uFahthcfIA .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFahthcfIA .mbr-section-subtitle,
.cid-uFahthcfIA .text_widget,
.cid-uFahthcfIA .mbr-section-btn {
  text-align: center;
}
.cid-uFahthcfIA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFdzzsGomS {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFdzzsGomS .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFdzzsGomS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdzzsGomS .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS .line {
    margin-bottom: 10rem;
  }
}
.cid-uFdzzsGomS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdzzsGomS p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFdzzsGomS {
    align-items: center;
  }
  .cid-uFdzzsGomS .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFdzzsGomS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFdzzsGomS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFdzzsGomS .content-wrap {
    width: 100%;
  }
}
.cid-uFdzzsGomS .mbr-section-subtitle,
.cid-uFdzzsGomS .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFdzzsGomS .mbr-text,
.cid-uFdzzsGomS .mbr-section-btn {
  text-align: left;
}
.cid-uFdzzsGomS .mbr-section-title {
  color: #ffffff;
}
.cid-uFwfOtxKGn {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwfOtxKGn .mbr-text {
  color: #221b35;
}
.cid-uFwfOtxKGn .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwfOtxKGn h5,
.cid-uFwfOtxKGn h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwfOtxKGn h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwfOtxKGn h6 {
  line-height: 1.3 !important;
}
.cid-uFwfOtxKGn h6 span {
  padding-right: 2rem;
}
.cid-uFwfOtxKGn .mbr-section-title,
.cid-uFwfOtxKGn .align {
  color: #ffffff;
}
.cid-uFwfOtxKGn .mbr-section-subtitle,
.cid-uFwfOtxKGn .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFD8SOwHUi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFD8SOwHUi .mbr-section-head {
  width: 100%;
}
.cid-uFD8SOwHUi .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uAUeEUQU8R {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uAUeEUQU8R .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uAUeEUQU8R h2,
.cid-uAUeEUQU8R h3,
.cid-uAUeEUQU8R h4,
.cid-uAUeEUQU8R h5 {
  margin: 0;
}
.cid-uAUeEUQU8R .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uAUeEUQU8R .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAUeEUQU8R .mbr-section-subtitle {
  text-align: center;
}
.cid-uAUeEUQU8R .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uAUeEUQU8R .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uAUeEUQU8R .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uAUeEUQU8R .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uAUeEUQU8R .image-wrap {
    width: 100%;
  }
}
.cid-uAUeEUQU8R img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uAUeEUQU8R .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uAUeEUQU8R .text-wrap {
    bottom: 20px;
  }
}
.cid-uAUeEUQU8R .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uAUeEUQU8R h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uAUeEUQU8R h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uAUeEUQU8R h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fjSRAaC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uB6fjSRAaC .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uB6fjSRAaC h2,
.cid-uB6fjSRAaC h3,
.cid-uB6fjSRAaC h4,
.cid-uB6fjSRAaC h5 {
  margin: 0;
}
.cid-uB6fjSRAaC .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uB6fjSRAaC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uB6fjSRAaC .mbr-section-subtitle {
  text-align: center;
}
.cid-uB6fjSRAaC .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uB6fjSRAaC .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uB6fjSRAaC .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uB6fjSRAaC .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uB6fjSRAaC .image-wrap {
    width: 100%;
  }
}
.cid-uB6fjSRAaC img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uB6fjSRAaC .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uB6fjSRAaC .text-wrap {
    bottom: 20px;
  }
}
.cid-uB6fjSRAaC .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uB6fjSRAaC h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uB6fjSRAaC h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fjSRAaC h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uFlPMvHRvq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uFlPMvHRvq .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uFlPMvHRvq h2,
.cid-uFlPMvHRvq h3,
.cid-uFlPMvHRvq h4,
.cid-uFlPMvHRvq h5 {
  margin: 0;
}
.cid-uFlPMvHRvq .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uFlPMvHRvq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFlPMvHRvq .mbr-section-subtitle {
  text-align: center;
}
.cid-uFlPMvHRvq .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uFlPMvHRvq .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uFlPMvHRvq .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uFlPMvHRvq .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uFlPMvHRvq .image-wrap {
    width: 100%;
  }
}
.cid-uFlPMvHRvq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uFlPMvHRvq .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uFlPMvHRvq .text-wrap {
    bottom: 20px;
  }
}
.cid-uFlPMvHRvq .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uFlPMvHRvq h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uFlPMvHRvq h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uFlPMvHRvq h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6flTYUuz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uB6flTYUuz .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uB6flTYUuz h2,
.cid-uB6flTYUuz h3,
.cid-uB6flTYUuz h4,
.cid-uB6flTYUuz h5 {
  margin: 0;
}
.cid-uB6flTYUuz .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uB6flTYUuz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uB6flTYUuz .mbr-section-subtitle {
  text-align: center;
}
.cid-uB6flTYUuz .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uB6flTYUuz .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uB6flTYUuz .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uB6flTYUuz .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uB6flTYUuz .image-wrap {
    width: 100%;
  }
}
.cid-uB6flTYUuz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uB6flTYUuz .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uB6flTYUuz .text-wrap {
    bottom: 20px;
  }
}
.cid-uB6flTYUuz .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uB6flTYUuz h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uB6flTYUuz h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6flTYUuz h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fnnXS6E {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uB6fnnXS6E .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uB6fnnXS6E h2,
.cid-uB6fnnXS6E h3,
.cid-uB6fnnXS6E h4,
.cid-uB6fnnXS6E h5 {
  margin: 0;
}
.cid-uB6fnnXS6E .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uB6fnnXS6E .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uB6fnnXS6E .mbr-section-subtitle {
  text-align: center;
}
.cid-uB6fnnXS6E .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uB6fnnXS6E .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uB6fnnXS6E .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uB6fnnXS6E .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uB6fnnXS6E .image-wrap {
    width: 100%;
  }
}
.cid-uB6fnnXS6E img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uB6fnnXS6E .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uB6fnnXS6E .text-wrap {
    bottom: 20px;
  }
}
.cid-uB6fnnXS6E .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uB6fnnXS6E h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uB6fnnXS6E h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fnnXS6E h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fXhYBvn {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uB6fXhYBvn .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uB6fXhYBvn h2,
.cid-uB6fXhYBvn h3,
.cid-uB6fXhYBvn h4,
.cid-uB6fXhYBvn h5 {
  margin: 0;
}
.cid-uB6fXhYBvn .mbr-section-head {
  margin-bottom: 40px;
}
.cid-uB6fXhYBvn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uB6fXhYBvn .mbr-section-subtitle {
  text-align: center;
}
.cid-uB6fXhYBvn .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-uB6fXhYBvn .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-uB6fXhYBvn .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-uB6fXhYBvn .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-uB6fXhYBvn .image-wrap {
    width: 100%;
  }
}
.cid-uB6fXhYBvn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
}
.cid-uB6fXhYBvn .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 300px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-uB6fXhYBvn .text-wrap {
    bottom: 20px;
  }
}
.cid-uB6fXhYBvn .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-uB6fXhYBvn h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uB6fXhYBvn h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uB6fXhYBvn h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uATJ4cOYGJ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uATJ4cOYGJ .mbr-section-head {
  width: 100%;
}
.cid-uATJ4cOYGJ .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uEsWtA3Yj9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsWtA3Yj9 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 100%;
  }
  .cid-uEsWtA3Yj9 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uEsWtA3Yj9 .item-wrap {
  width: 100%;
}
.cid-uEsWtA3Yj9 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uEsWtA3Yj9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uEsWtA3Yj9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uEsWtA3Yj9 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uEsWtA3Yj9 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-links {
    padding-top: 20px;
  }
}
.cid-uEsWtA3Yj9 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .list {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uEsWtA3Yj9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uEsWtA3Yj9 .list a:hover:before {
  width: 100%;
}
.cid-uEsWtA3Yj9 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uEsWtA3Yj9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uEsWtA3Yj9 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFahthcfIA {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFahthcfIA .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFahthcfIA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFahthcfIA .menu_box .navbar.opened,
  .cid-uFahthcfIA .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFahthcfIA nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFahthcfIA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFahthcfIA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFahthcfIA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFahthcfIA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFahthcfIA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFahthcfIA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-body .mbr-text,
  .cid-uFahthcfIA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFahthcfIA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFahthcfIA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFahthcfIA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFahthcfIA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFahthcfIA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFahthcfIA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFahthcfIA .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .nav-item {
    margin: 0 !important;
  }
}
.cid-uFahthcfIA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFahthcfIA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFahthcfIA .nav-item .nav-link:hover::before,
.cid-uFahthcfIA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFahthcfIA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFahthcfIA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFahthcfIA .offcanvas_box {
    display: none;
  }
}
.cid-uFahthcfIA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFahthcfIA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFahthcfIA .container {
  display: flex;
  margin: auto;
}
.cid-uFahthcfIA .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFahthcfIA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFahthcfIA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFahthcfIA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .navbar-nav {
    margin: 0;
  }
}
.cid-uFahthcfIA .dropdown-menu,
.cid-uFahthcfIA .navbar.opened {
  background-color: false !important;
}
.cid-uFahthcfIA .nav-item:focus,
.cid-uFahthcfIA .nav-link:focus {
  outline: none;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFahthcfIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFahthcfIA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFahthcfIA .navbar.opened {
  transition: all 0.3s;
}
.cid-uFahthcfIA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFahthcfIA .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFahthcfIA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFahthcfIA .navbar.collapsed {
  justify-content: center;
}
.cid-uFahthcfIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFahthcfIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFahthcfIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFahthcfIA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFahthcfIA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFahthcfIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFahthcfIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFahthcfIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFahthcfIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFahthcfIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFahthcfIA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFahthcfIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFahthcfIA .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-uFahthcfIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFahthcfIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFahthcfIA .dropdown-item.active,
.cid-uFahthcfIA .dropdown-item:active {
  background-color: transparent;
}
.cid-uFahthcfIA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFahthcfIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFahthcfIA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFahthcfIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFahthcfIA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFahthcfIA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFahthcfIA .navbar {
    height: 70px;
  }
  .cid-uFahthcfIA .navbar.opened {
    height: auto;
  }
  .cid-uFahthcfIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFahthcfIA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFahthcfIA .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFahthcfIA .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFahthcfIA .text_widget {
  margin-bottom: 32px;
}
.cid-uFahthcfIA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFahthcfIA .text_widget a:hover,
.cid-uFahthcfIA .text_widget a:focus {
  opacity: .8;
}
.cid-uFahthcfIA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFahthcfIA .navbar-caption {
  color: #ffffff;
}
.cid-uFahthcfIA .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFahthcfIA .mbr-section-subtitle,
.cid-uFahthcfIA .text_widget,
.cid-uFahthcfIA .mbr-section-btn {
  text-align: center;
}
.cid-uFahthcfIA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFdzzsGomS {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFdzzsGomS .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFdzzsGomS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdzzsGomS .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS .line {
    margin-bottom: 10rem;
  }
}
.cid-uFdzzsGomS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdzzsGomS p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFdzzsGomS {
    align-items: center;
  }
  .cid-uFdzzsGomS .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFdzzsGomS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFdzzsGomS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFdzzsGomS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFdzzsGomS .content-wrap {
    width: 100%;
  }
}
.cid-uFdzzsGomS .mbr-section-subtitle,
.cid-uFdzzsGomS .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFdzzsGomS .mbr-text,
.cid-uFdzzsGomS .mbr-section-btn {
  text-align: left;
}
.cid-uFdzzsGomS .mbr-section-title {
  color: #ffffff;
}
.cid-uEpa3CEkq0 {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uEpa3CEkq0 .main_header {
  margin-bottom: 8rem;
}
.cid-uEpa3CEkq0 .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uEpa3CEkq0 .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-uEpa3CEkq0 form {
  margin-top: 2.5rem;
}
.cid-uEpa3CEkq0 input::-webkit-input-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-uEpa3CEkq0 input::-moz-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-uEpa3CEkq0 .mbr-form .form-group {
  margin-bottom: 1rem;
}
.cid-uEpa3CEkq0 .mbr-form .form-control {
  padding: .75rem 1rem;
  line-height: 1.5;
  border: 1px solid #dddddd;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-uEpa3CEkq0 .mbr-form .form-control:focus {
  border-color: #111111;
}
.cid-uEpa3CEkq0 .mbr-form textarea {
  height: 120px;
  background-color: #ffffff;
}
.cid-uEpa3CEkq0 .mbr-form .btn {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none;
  min-height: auto !important;
  font-weight: 400;
}
.cid-uEpa3CEkq0 .mbr-form .btn-primary-outline {
  padding: 0 !important;
  border-bottom: 1px solid currentColor !important;
}
.cid-uEpa3CEkq0 .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-uEpa3CEkq0 .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-uEpa3CEkq0 .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-uEpa3CEkq0 .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #7d9e45;
}
.cid-uEpa3CEkq0 .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-uEpa3CEkq0 .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-uEpa3CEkq0 .card_item:nth-child(2) .square_fill {
  background-color: #212428;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-uEpa3CEkq0 .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-uEpa3CEkq0 .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uEpa3CEkq0 .card_item:nth-child(3) .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uEpa3CEkq0 .card_item .card-box {
  border-left: 1px dotted rgba(125, 158, 69, 0.5);
}
.cid-uEpa3CEkq0 .card_item:nth-child(3) .card-box {
  border-right: 1px dotted rgba(125, 158, 69, 0.5);
}
.cid-uEpa3CEkq0 .card-box {
  height: 100%;
}
.cid-uEpa3CEkq0 .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-uEpa3CEkq0 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uEpa3CEkq0 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uEpa3CEkq0 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uEpa3CEkq0 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uEpa3CEkq0 .card-title {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .cid-uEpa3CEkq0 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uEpa3CEkq0 .item-wrapper {
    padding: 0;
  }
  .cid-uEpa3CEkq0 .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-uEpa3CEkq0 .main_header {
    margin-bottom: 4rem;
  }
  .cid-uEpa3CEkq0 .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uEpa3CEkq0 .mbr-text {
    margin-top: .75rem;
  }
  .cid-uEpa3CEkq0 .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uEpa3CEkq0 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uEpa3CEkq0 .card_item .card-box {
    border-left: none;
    border-bottom: 1px dotted rgba(125, 158, 69, 0.5);
  }
  .cid-uEpa3CEkq0 .card_item:nth-child(3) .card-box {
    border-right: none;
    border-bottom: none;
  }
  .cid-uEpa3CEkq0 .card-title {
    margin-bottom: 1.25rem;
  }
}
.cid-uEpa3CEkq0 .textGDPR {
  font-size: 14px;
}
.cid-uBahnkCw6N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uBahnkCw6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBahnkCw6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBahnkCw6N .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBahnkCw6N .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBahnkCw6N .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-uBahnkCw6N .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBahnkCw6N .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uB4rRyx8Dr {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uB4rRyx8Dr .mbr-section-head {
  width: 100%;
}
.cid-uB4rRyx8Dr .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uEsWtA3Yj9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsWtA3Yj9 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 100%;
  }
  .cid-uEsWtA3Yj9 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uEsWtA3Yj9 .item-wrap {
  width: 100%;
}
.cid-uEsWtA3Yj9 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uEsWtA3Yj9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uEsWtA3Yj9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uEsWtA3Yj9 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uEsWtA3Yj9 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-links {
    padding-top: 20px;
  }
}
.cid-uEsWtA3Yj9 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .list {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uEsWtA3Yj9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uEsWtA3Yj9 .list a:hover:before {
  width: 100%;
}
.cid-uEsWtA3Yj9 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uEsWtA3Yj9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uEsWtA3Yj9 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFahthcfIA {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFahthcfIA .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFahthcfIA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFahthcfIA .menu_box .navbar.opened,
  .cid-uFahthcfIA .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFahthcfIA nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFahthcfIA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFahthcfIA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFahthcfIA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFahthcfIA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFahthcfIA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFahthcfIA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-body .mbr-text,
  .cid-uFahthcfIA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFahthcfIA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFahthcfIA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFahthcfIA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFahthcfIA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFahthcfIA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFahthcfIA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFahthcfIA .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .nav-item {
    margin: 0 !important;
  }
}
.cid-uFahthcfIA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFahthcfIA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFahthcfIA .nav-item .nav-link:hover::before,
.cid-uFahthcfIA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFahthcfIA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFahthcfIA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFahthcfIA .offcanvas_box {
    display: none;
  }
}
.cid-uFahthcfIA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFahthcfIA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFahthcfIA .container {
  display: flex;
  margin: auto;
}
.cid-uFahthcfIA .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFahthcfIA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFahthcfIA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFahthcfIA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .navbar-nav {
    margin: 0;
  }
}
.cid-uFahthcfIA .dropdown-menu,
.cid-uFahthcfIA .navbar.opened {
  background-color: false !important;
}
.cid-uFahthcfIA .nav-item:focus,
.cid-uFahthcfIA .nav-link:focus {
  outline: none;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFahthcfIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFahthcfIA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFahthcfIA .navbar.opened {
  transition: all 0.3s;
}
.cid-uFahthcfIA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFahthcfIA .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFahthcfIA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFahthcfIA .navbar.collapsed {
  justify-content: center;
}
.cid-uFahthcfIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFahthcfIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFahthcfIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFahthcfIA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFahthcfIA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFahthcfIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFahthcfIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFahthcfIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFahthcfIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFahthcfIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFahthcfIA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFahthcfIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFahthcfIA .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-uFahthcfIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFahthcfIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFahthcfIA .dropdown-item.active,
.cid-uFahthcfIA .dropdown-item:active {
  background-color: transparent;
}
.cid-uFahthcfIA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFahthcfIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFahthcfIA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFahthcfIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFahthcfIA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFahthcfIA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFahthcfIA .navbar {
    height: 70px;
  }
  .cid-uFahthcfIA .navbar.opened {
    height: auto;
  }
  .cid-uFahthcfIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFahthcfIA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFahthcfIA .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFahthcfIA .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFahthcfIA .text_widget {
  margin-bottom: 32px;
}
.cid-uFahthcfIA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFahthcfIA .text_widget a:hover,
.cid-uFahthcfIA .text_widget a:focus {
  opacity: .8;
}
.cid-uFahthcfIA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFahthcfIA .navbar-caption {
  color: #ffffff;
}
.cid-uFahthcfIA .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFahthcfIA .mbr-section-subtitle,
.cid-uFahthcfIA .text_widget,
.cid-uFahthcfIA .mbr-section-btn {
  text-align: center;
}
.cid-uFahthcfIA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uEt1nd8lRY {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #23272b;
}
.cid-uEt1nd8lRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEt1nd8lRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEt1nd8lRY .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-end;
}
@media (max-width: 1259px) {
  .cid-uEt1nd8lRY .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-uEt1nd8lRY .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-uEt1nd8lRY .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uEt1nd8lRY .mbr-section-subtitle {
  color: #8f8f8f;
  padding: 16px 0;
  font-weight: 400;
}
.cid-uEt1nd8lRY .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 575px) {
  .cid-uEt1nd8lRY .mbr-section-subtitle {
    padding: 4px 0;
  }
}
.cid-uEt1nd8lRY .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-uEt1nd8lRY .item-right {
    padding-top: 0;
  }
}
.cid-uEt1nd8lRY .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-uEt1nd8lRY .mbr-section-btn {
  margin-top: 30px;
}
.cid-uEt1nd8lRY .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-uEt1nd8lRY .mbr-text,
.cid-uEt1nd8lRY .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEt06UGuhl {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uEt06UGuhl img {
  border-radius: 0px;
}
.cid-uEt06UGuhl .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
  font-weight: 300;
}
.cid-uEt06UGuhl .date {
  text-transform: uppercase;
  color: #7d9e45;
  text-align: left;
  padding-top: 1rem;
}
.cid-uEt06UGuhl .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-uEt06UGuhl .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  color: #777777;
}
.cid-uEt06UGuhl .right {
  display: flex;
  flex-direction: column;
}
.cid-uEt06UGuhl .mbr-section-btn {
  border: 2px solid #7d9e45;
  width: auto;
}
.cid-uEt06UGuhl .mbr-section-btn:hover {
  background-color: #7d9e45;
  border: 2px solid #7d9e45;
}
.cid-uEt06UGuhl .card-heading {
  padding-top: 0;
  text-align: left;
  color: #353535;
}
.cid-uEt06UGuhl .mbr-text {
  padding-top: 10px;
  text-align: left;
  color: #353535;
}
.cid-uB4s4W2Vsk {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uB4s4W2Vsk .mbr-section-head {
  width: 100%;
}
.cid-uB4s4W2Vsk .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uEsWtA3Yj9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsWtA3Yj9 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 100%;
  }
  .cid-uEsWtA3Yj9 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uEsWtA3Yj9 .item-wrap {
  width: 100%;
}
.cid-uEsWtA3Yj9 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uEsWtA3Yj9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uEsWtA3Yj9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uEsWtA3Yj9 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uEsWtA3Yj9 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-links {
    padding-top: 20px;
  }
}
.cid-uEsWtA3Yj9 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .list {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uEsWtA3Yj9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uEsWtA3Yj9 .list a:hover:before {
  width: 100%;
}
.cid-uEsWtA3Yj9 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uEsWtA3Yj9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uEsWtA3Yj9 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFahthcfIA {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFahthcfIA .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFahthcfIA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFahthcfIA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFahthcfIA .menu_box .navbar.opened,
  .cid-uFahthcfIA .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFahthcfIA nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFahthcfIA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFahthcfIA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFahthcfIA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFahthcfIA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFahthcfIA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFahthcfIA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFahthcfIA .offcanvas-body .mbr-text,
  .cid-uFahthcfIA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFahthcfIA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFahthcfIA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFahthcfIA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFahthcfIA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFahthcfIA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFahthcfIA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFahthcfIA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFahthcfIA .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .nav-item {
    margin: 0 !important;
  }
}
.cid-uFahthcfIA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFahthcfIA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFahthcfIA .nav-item .nav-link:hover::before,
.cid-uFahthcfIA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFahthcfIA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFahthcfIA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFahthcfIA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFahthcfIA .offcanvas_box {
    display: none;
  }
}
.cid-uFahthcfIA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFahthcfIA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFahthcfIA .container {
  display: flex;
  margin: auto;
}
.cid-uFahthcfIA .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFahthcfIA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFahthcfIA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFahthcfIA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .navbar-nav {
    margin: 0;
  }
}
.cid-uFahthcfIA .dropdown-menu,
.cid-uFahthcfIA .navbar.opened {
  background-color: false !important;
}
.cid-uFahthcfIA .nav-item:focus,
.cid-uFahthcfIA .nav-link:focus {
  outline: none;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFahthcfIA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFahthcfIA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFahthcfIA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFahthcfIA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFahthcfIA .navbar.opened {
  transition: all 0.3s;
}
.cid-uFahthcfIA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFahthcfIA .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFahthcfIA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFahthcfIA .navbar.collapsed {
  justify-content: center;
}
.cid-uFahthcfIA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFahthcfIA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFahthcfIA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFahthcfIA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFahthcfIA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFahthcfIA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFahthcfIA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFahthcfIA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFahthcfIA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFahthcfIA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFahthcfIA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFahthcfIA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFahthcfIA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFahthcfIA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFahthcfIA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFahthcfIA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFahthcfIA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFahthcfIA .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-uFahthcfIA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFahthcfIA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFahthcfIA .dropdown-item.active,
.cid-uFahthcfIA .dropdown-item:active {
  background-color: transparent;
}
.cid-uFahthcfIA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFahthcfIA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFahthcfIA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFahthcfIA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFahthcfIA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFahthcfIA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFahthcfIA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFahthcfIA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFahthcfIA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFahthcfIA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFahthcfIA .navbar {
    height: 70px;
  }
  .cid-uFahthcfIA .navbar.opened {
    height: auto;
  }
  .cid-uFahthcfIA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFahthcfIA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFahthcfIA .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFahthcfIA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFahthcfIA .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFahthcfIA .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFahthcfIA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFahthcfIA .text_widget {
  margin-bottom: 32px;
}
.cid-uFahthcfIA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFahthcfIA .text_widget a:hover,
.cid-uFahthcfIA .text_widget a:focus {
  opacity: .8;
}
.cid-uFahthcfIA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFahthcfIA .navbar-caption {
  color: #ffffff;
}
.cid-uFahthcfIA .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFahthcfIA .mbr-section-subtitle,
.cid-uFahthcfIA .text_widget,
.cid-uFahthcfIA .mbr-section-btn {
  text-align: center;
}
.cid-uFahthcfIA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uEt24b920A {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uEt24b920A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEt24b920A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEt24b920A .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-end;
}
@media (max-width: 1259px) {
  .cid-uEt24b920A .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-uEt24b920A .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-uEt24b920A .mbr-section-title {
  color: #ffffff;
}
.cid-uEt24b920A .mbr-section-subtitle {
  color: #8f8f8f;
  padding: 16px 0;
  font-weight: 400;
}
.cid-uEt24b920A .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 575px) {
  .cid-uEt24b920A .mbr-section-subtitle {
    padding: 4px 0;
  }
}
.cid-uEt24b920A .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-uEt24b920A .item-right {
    padding-top: 0;
  }
}
.cid-uEt24b920A .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-uEt24b920A .mbr-section-btn {
  margin-top: 30px;
}
.cid-uEt24b920A .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-uEt24b920A .mbr-text,
.cid-uEt24b920A .mbr-section-btn {
  color: #ffffff;
}
.cid-uEt26SqhTj {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEt26SqhTj h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uEt26SqhTj .container {
    position: relative;
  }
  .cid-uEt26SqhTj .row {
    margin: 0;
  }
  .cid-uEt26SqhTj h2 {
    margin: 0;
  }
}
.cid-uEt26SqhTj .mbr-section-subtitle {
  color: #232323;
}
.cid-uEt26SqhTj .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-uEt26SqhTj h2 {
  text-align: left;
  color: #232323;
}
.cid-uEt26SqhTj .mbr-section-title {
  text-align: left;
}
.cid-uEt26SqhTj .list {
  text-align: left;
}
.cid-uEt26SqhTj H3 {
  color: #232323;
  text-align: left;
}
.cid-uB4s5Hc7ox {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uB4s5Hc7ox .mbr-section-head {
  width: 100%;
}
.cid-uB4s5Hc7ox .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uEsWtA3Yj9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsWtA3Yj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsWtA3Yj9 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .container {
    max-width: 100%;
  }
  .cid-uEsWtA3Yj9 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uEsWtA3Yj9 .item-wrap {
  width: 100%;
}
.cid-uEsWtA3Yj9 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uEsWtA3Yj9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uEsWtA3Yj9 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uEsWtA3Yj9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uEsWtA3Yj9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uEsWtA3Yj9 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uEsWtA3Yj9 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-links {
    padding-top: 20px;
  }
}
.cid-uEsWtA3Yj9 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uEsWtA3Yj9 .list {
    text-align: center !important;
  }
}
.cid-uEsWtA3Yj9 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uEsWtA3Yj9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uEsWtA3Yj9 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uEsWtA3Yj9 .list a:hover:before {
  width: 100%;
}
.cid-uEsWtA3Yj9 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uEsWtA3Yj9 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uEsWtA3Yj9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uEsWtA3Yj9 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvgqgbhju {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvgqgbhju .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvgqgbhju .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvgqgbhju .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvgqgbhju .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvgqgbhju .menu_box .navbar.opened,
  .cid-uFvgqgbhju .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvgqgbhju nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvgqgbhju .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvgqgbhju .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvgqgbhju .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvgqgbhju .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvgqgbhju .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvgqgbhju .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvgqgbhju .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvgqgbhju .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvgqgbhju .offcanvas-body .mbr-text,
  .cid-uFvgqgbhju .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvgqgbhju .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvgqgbhju .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvgqgbhju ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvgqgbhju .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgqgbhju .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvgqgbhju .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvgqgbhju li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvgqgbhju .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvgqgbhju .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvgqgbhju .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvgqgbhju .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvgqgbhju .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvgqgbhju .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvgqgbhju .nav-item .nav-link:hover::before,
.cid-uFvgqgbhju .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvgqgbhju .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvgqgbhju .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvgqgbhju .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgqgbhju .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvgqgbhju .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvgqgbhju .offcanvas_box {
    display: none;
  }
}
.cid-uFvgqgbhju .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvgqgbhju .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvgqgbhju .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvgqgbhju .container {
  display: flex;
  margin: auto;
}
.cid-uFvgqgbhju .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvgqgbhju .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvgqgbhju .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvgqgbhju .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvgqgbhju .navbar-nav {
    margin: 0;
  }
}
.cid-uFvgqgbhju .dropdown-menu,
.cid-uFvgqgbhju .navbar.opened {
  background-color: false !important;
}
.cid-uFvgqgbhju .nav-item:focus,
.cid-uFvgqgbhju .nav-link:focus {
  outline: none;
}
.cid-uFvgqgbhju .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvgqgbhju .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvgqgbhju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvgqgbhju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvgqgbhju .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvgqgbhju .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvgqgbhju .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvgqgbhju .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvgqgbhju .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvgqgbhju .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvgqgbhju .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvgqgbhju .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvgqgbhju .navbar.collapsed {
  justify-content: center;
}
.cid-uFvgqgbhju .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvgqgbhju .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvgqgbhju .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvgqgbhju .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvgqgbhju .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvgqgbhju .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvgqgbhju .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvgqgbhju .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvgqgbhju .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvgqgbhju .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvgqgbhju .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvgqgbhju .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvgqgbhju .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvgqgbhju .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvgqgbhju .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvgqgbhju .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvgqgbhju .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvgqgbhju .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvgqgbhju .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvgqgbhju .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvgqgbhju .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvgqgbhju .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvgqgbhju .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvgqgbhju .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvgqgbhju .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-uFvgqgbhju .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvgqgbhju .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvgqgbhju .dropdown-item.active,
.cid-uFvgqgbhju .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvgqgbhju .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvgqgbhju .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvgqgbhju .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvgqgbhju .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvgqgbhju ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvgqgbhju .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvgqgbhju button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvgqgbhju button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvgqgbhju button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvgqgbhju button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgqgbhju button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgqgbhju button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvgqgbhju nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgqgbhju nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvgqgbhju nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvgqgbhju nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgqgbhju a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvgqgbhju .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvgqgbhju .navbar {
    height: 70px;
  }
  .cid-uFvgqgbhju .navbar.opened {
    height: auto;
  }
  .cid-uFvgqgbhju .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvgqgbhju .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvgqgbhju .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvgqgbhju .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvgqgbhju .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvgqgbhju .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvgqgbhju .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvgqgbhju .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvgqgbhju .text_widget {
  margin-bottom: 32px;
}
.cid-uFvgqgbhju .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvgqgbhju .text_widget a:hover,
.cid-uFvgqgbhju .text_widget a:focus {
  opacity: .8;
}
.cid-uFvgqgbhju .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvgqgbhju .navbar-caption {
  color: #ffffff;
}
.cid-uFvgqgbhju .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvgqgbhju .mbr-section-subtitle,
.cid-uFvgqgbhju .text_widget,
.cid-uFvgqgbhju .mbr-section-btn {
  text-align: center;
}
.cid-uFvgqgbhju a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvgqgywwY {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvgqgywwY .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvgqgywwY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgqgywwY .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvgqgywwY .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvgqgywwY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgqgywwY p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvgqgywwY {
    align-items: center;
  }
  .cid-uFvgqgywwY .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvgqgywwY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvgqgywwY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvgqgywwY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvgqgywwY .content-wrap {
    width: 100%;
  }
}
.cid-uFvgqgywwY .mbr-section-subtitle,
.cid-uFvgqgywwY .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvgqgywwY .mbr-text,
.cid-uFvgqgywwY .mbr-section-btn {
  text-align: left;
}
.cid-uFvgqgywwY .mbr-section-title {
  color: #ffffff;
}
.cid-uFw8B1nR2D {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFw8B1nR2D .mbr-text {
  color: #221b35;
}
.cid-uFw8B1nR2D .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFw8B1nR2D h5,
.cid-uFw8B1nR2D h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFw8B1nR2D h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFw8B1nR2D h6 {
  line-height: 1.3 !important;
}
.cid-uFw8B1nR2D h6 span {
  padding-right: 2rem;
}
.cid-uFw8B1nR2D .mbr-section-title,
.cid-uFw8B1nR2D .align {
  color: #ffffff;
}
.cid-uFw8B1nR2D .mbr-section-subtitle,
.cid-uFw8B1nR2D .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFw6u0fzs6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFw6u0fzs6 .mbr-section-head {
  width: 100%;
}
.cid-uFw6u0fzs6 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgqh2y2h {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFvgqh2y2h .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvgqh2y2h .card .square_null {
  transform: translateX(2rem);
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvgqh2y2h .card .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #7d9e45;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvgqh2y2h .card:hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-uFvgqh2y2h .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvgqh2y2h .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvgqh2y2h .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvgqh2y2h .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvgqh2y2h .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvgqh2y2h .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvgqh2y2h .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgqh2y2h .row {
    flex-direction: column-reverse;
  }
  .cid-uFvgqh2y2h .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvgqh2y2h .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgqh2y2h .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvgqh2y2h .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgqh2y2h .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uFvgqh2y2h .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvgqh2y2h .square_animation .square_null {
    transform: translateX(1rem);
  }
  .cid-uFvgqh2y2h .square_animation .square_fill {
    transform: translate(-4rem, -2rem);
  }
}
@media (max-width: 767px) {
  .cid-uFvgqh2y2h .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvgqh2y2h .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgqh2y2h .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvgqh2y2h .card .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-uFvgqh2y2h .card .square_null {
    transform: translateX(1.5rem);
  }
  .cid-uFvgqh2y2h .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFvgqh2y2h .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvgqh2y2h .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvgqh2y2h .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvgqh2y2h .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvgqh2y2h .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvgqh2y2h .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFvgqh2y2h H5 {
  color: #7d9e45;
}
.cid-uFB3DhjzZj {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB3DhjzZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB3DhjzZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB3DhjzZj .text-container {
  width: 100%;
}
.cid-uFB3DhjzZj .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB3DhjzZj .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB3DhjzZj .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB3DhjzZj .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFvgqjVuzg {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvgqjVuzg .mbr-section-head {
  width: 100%;
}
.cid-uFvgqjVuzg .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgqkecuD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgqkecuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgqkecuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgqkecuD .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvgqkecuD .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgqkecuD .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvgqkecuD .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvgqkecuD .container {
    max-width: 100%;
  }
  .cid-uFvgqkecuD .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvgqkecuD .item-wrap {
  width: 100%;
}
.cid-uFvgqkecuD .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvgqkecuD .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvgqkecuD .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvgqkecuD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgqkecuD .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvgqkecuD .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgqkecuD .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvgqkecuD .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvgqkecuD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvgqkecuD .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvgqkecuD .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvgqkecuD .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvgqkecuD .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvgqkecuD .col-links {
    padding-top: 20px;
  }
}
.cid-uFvgqkecuD .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvgqkecuD .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvgqkecuD .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvgqkecuD .list {
    text-align: center !important;
  }
}
.cid-uFvgqkecuD .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvgqkecuD .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvgqkecuD .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvgqkecuD .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvgqkecuD .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvgqkecuD .list a:hover:before {
  width: 100%;
}
.cid-uFvgqkecuD .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvgqkecuD .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvgqkecuD .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvgqkecuD .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvgpOrODG {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvgpOrODG .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvgpOrODG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvgpOrODG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvgpOrODG .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvgpOrODG .menu_box .navbar.opened,
  .cid-uFvgpOrODG .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvgpOrODG nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvgpOrODG .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvgpOrODG .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvgpOrODG .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvgpOrODG .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvgpOrODG .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvgpOrODG .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvgpOrODG .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvgpOrODG .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvgpOrODG .offcanvas-body .mbr-text,
  .cid-uFvgpOrODG .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvgpOrODG .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvgpOrODG .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvgpOrODG ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvgpOrODG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgpOrODG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvgpOrODG .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvgpOrODG li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvgpOrODG .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvgpOrODG .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvgpOrODG .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvgpOrODG .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvgpOrODG .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvgpOrODG .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvgpOrODG .nav-item .nav-link:hover::before,
.cid-uFvgpOrODG .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvgpOrODG .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvgpOrODG .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvgpOrODG .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgpOrODG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvgpOrODG .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvgpOrODG .offcanvas_box {
    display: none;
  }
}
.cid-uFvgpOrODG .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvgpOrODG .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvgpOrODG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvgpOrODG .container {
  display: flex;
  margin: auto;
}
.cid-uFvgpOrODG .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvgpOrODG .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvgpOrODG .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvgpOrODG .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvgpOrODG .navbar-nav {
    margin: 0;
  }
}
.cid-uFvgpOrODG .dropdown-menu,
.cid-uFvgpOrODG .navbar.opened {
  background-color: false !important;
}
.cid-uFvgpOrODG .nav-item:focus,
.cid-uFvgpOrODG .nav-link:focus {
  outline: none;
}
.cid-uFvgpOrODG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvgpOrODG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvgpOrODG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvgpOrODG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvgpOrODG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvgpOrODG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvgpOrODG .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvgpOrODG .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvgpOrODG .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvgpOrODG .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvgpOrODG .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvgpOrODG .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvgpOrODG .navbar.collapsed {
  justify-content: center;
}
.cid-uFvgpOrODG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvgpOrODG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvgpOrODG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvgpOrODG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvgpOrODG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvgpOrODG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvgpOrODG .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvgpOrODG .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvgpOrODG .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvgpOrODG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvgpOrODG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvgpOrODG .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvgpOrODG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvgpOrODG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvgpOrODG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvgpOrODG .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvgpOrODG .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvgpOrODG .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvgpOrODG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvgpOrODG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvgpOrODG .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvgpOrODG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvgpOrODG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvgpOrODG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvgpOrODG .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-uFvgpOrODG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvgpOrODG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvgpOrODG .dropdown-item.active,
.cid-uFvgpOrODG .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvgpOrODG .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvgpOrODG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvgpOrODG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvgpOrODG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvgpOrODG ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvgpOrODG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvgpOrODG button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvgpOrODG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvgpOrODG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvgpOrODG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgpOrODG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgpOrODG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvgpOrODG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgpOrODG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvgpOrODG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvgpOrODG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgpOrODG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvgpOrODG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvgpOrODG .navbar {
    height: 70px;
  }
  .cid-uFvgpOrODG .navbar.opened {
    height: auto;
  }
  .cid-uFvgpOrODG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvgpOrODG .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvgpOrODG .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvgpOrODG .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvgpOrODG .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvgpOrODG .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvgpOrODG .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvgpOrODG .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvgpOrODG .text_widget {
  margin-bottom: 32px;
}
.cid-uFvgpOrODG .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvgpOrODG .text_widget a:hover,
.cid-uFvgpOrODG .text_widget a:focus {
  opacity: .8;
}
.cid-uFvgpOrODG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvgpOrODG .navbar-caption {
  color: #ffffff;
}
.cid-uFvgpOrODG .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvgpOrODG .mbr-section-subtitle,
.cid-uFvgpOrODG .text_widget,
.cid-uFvgpOrODG .mbr-section-btn {
  text-align: center;
}
.cid-uFvgpOrODG a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvgpONBiT {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvgpONBiT .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvgpONBiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgpONBiT .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvgpONBiT .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvgpONBiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgpONBiT p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvgpONBiT {
    align-items: center;
  }
  .cid-uFvgpONBiT .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvgpONBiT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvgpONBiT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvgpONBiT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvgpONBiT .content-wrap {
    width: 100%;
  }
}
.cid-uFvgpONBiT .mbr-section-subtitle,
.cid-uFvgpONBiT .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvgpONBiT .mbr-text,
.cid-uFvgpONBiT .mbr-section-btn {
  text-align: left;
}
.cid-uFvgpONBiT .mbr-section-title {
  color: #ffffff;
}
.cid-uFwbrsqu5n {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwbrsqu5n .mbr-text {
  color: #221b35;
}
.cid-uFwbrsqu5n .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwbrsqu5n h5,
.cid-uFwbrsqu5n h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwbrsqu5n h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwbrsqu5n h6 {
  line-height: 1.3 !important;
}
.cid-uFwbrsqu5n h6 span {
  padding-right: 2rem;
}
.cid-uFwbrsqu5n .mbr-section-title,
.cid-uFwbrsqu5n .align {
  color: #ffffff;
}
.cid-uFwbrsqu5n .mbr-section-subtitle,
.cid-uFwbrsqu5n .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwbsdDLrB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwbsdDLrB .mbr-section-head {
  width: 100%;
}
.cid-uFwbsdDLrB .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgpPBHW4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgpPBHW4 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvgpPBHW4 .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFvgpPBHW4 .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFvgpPBHW4 .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFvgpPBHW4 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvgpPBHW4 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvgpPBHW4 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvgpPBHW4 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvgpPBHW4 .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvgpPBHW4 .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvgpPBHW4 .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvgpPBHW4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvgpPBHW4 .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpPBHW4 .row {
    flex-direction: column-reverse;
  }
  .cid-uFvgpPBHW4 .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvgpPBHW4 .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgpPBHW4 .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvgpPBHW4 .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgpPBHW4 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgpPBHW4 .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFvgpPBHW4 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvgpPBHW4 .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFvgpPBHW4 .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFvgpPBHW4 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFvgpPBHW4 .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvgpPBHW4 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgpPBHW4 .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvgpPBHW4 .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFvgpPBHW4 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFvgpPBHW4 .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFvgpPBHW4 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvgpPBHW4 .card-title {
  color: #ffffff;
}
.cid-uFvgpPBHW4 .mbr-text,
.cid-uFvgpPBHW4 .linkBtn {
  color: #ffffff;
}
.cid-uFvgpPBHW4 H5 {
  color: #7d9e45;
}
.cid-uFvgpPBHW4 .display-7 {
  color: #ffffff;
}
.cid-uFvgpPBHW4 .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvgpPBHW4 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvgpPBHW4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvgpPBHW4 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvgpPBHW4 .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFB9iQbyKM {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFB9iQbyKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9iQbyKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9iQbyKM .text-container {
  width: 100%;
}
.cid-uFB9iQbyKM .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9iQbyKM .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9iQbyKM .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFvgpSfTOc {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvgpSfTOc .mbr-section-head {
  width: 100%;
}
.cid-uFvgpSfTOc .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgpSA70j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgpSA70j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgpSA70j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgpSA70j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvgpSA70j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpSA70j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvgpSA70j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvgpSA70j .container {
    max-width: 100%;
  }
  .cid-uFvgpSA70j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvgpSA70j .item-wrap {
  width: 100%;
}
.cid-uFvgpSA70j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvgpSA70j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvgpSA70j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvgpSA70j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgpSA70j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvgpSA70j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgpSA70j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvgpSA70j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvgpSA70j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvgpSA70j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvgpSA70j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvgpSA70j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvgpSA70j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvgpSA70j .col-links {
    padding-top: 20px;
  }
}
.cid-uFvgpSA70j .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvgpSA70j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvgpSA70j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvgpSA70j .list {
    text-align: center !important;
  }
}
.cid-uFvgpSA70j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvgpSA70j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvgpSA70j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvgpSA70j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvgpSA70j .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvgpSA70j .list a:hover:before {
  width: 100%;
}
.cid-uFvgpSA70j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvgpSA70j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvgpSA70j .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvgpSA70j .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvgQGk1WF {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvgQGk1WF .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvgQGk1WF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvgQGk1WF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvgQGk1WF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvgQGk1WF .menu_box .navbar.opened,
  .cid-uFvgQGk1WF .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvgQGk1WF nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvgQGk1WF .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvgQGk1WF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvgQGk1WF .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvgQGk1WF .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvgQGk1WF .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvgQGk1WF .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvgQGk1WF .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvgQGk1WF .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvgQGk1WF .offcanvas-body .mbr-text,
  .cid-uFvgQGk1WF .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvgQGk1WF .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvgQGk1WF .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvgQGk1WF ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvgQGk1WF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgQGk1WF .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvgQGk1WF .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvgQGk1WF li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvgQGk1WF .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvgQGk1WF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvgQGk1WF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvgQGk1WF .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvgQGk1WF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvgQGk1WF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvgQGk1WF .nav-item .nav-link:hover::before,
.cid-uFvgQGk1WF .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvgQGk1WF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvgQGk1WF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvgQGk1WF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgQGk1WF .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvgQGk1WF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvgQGk1WF .offcanvas_box {
    display: none;
  }
}
.cid-uFvgQGk1WF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvgQGk1WF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvgQGk1WF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvgQGk1WF .container {
  display: flex;
  margin: auto;
}
.cid-uFvgQGk1WF .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvgQGk1WF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvgQGk1WF .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvgQGk1WF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvgQGk1WF .navbar-nav {
    margin: 0;
  }
}
.cid-uFvgQGk1WF .dropdown-menu,
.cid-uFvgQGk1WF .navbar.opened {
  background-color: false !important;
}
.cid-uFvgQGk1WF .nav-item:focus,
.cid-uFvgQGk1WF .nav-link:focus {
  outline: none;
}
.cid-uFvgQGk1WF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvgQGk1WF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvgQGk1WF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvgQGk1WF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvgQGk1WF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvgQGk1WF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvgQGk1WF .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvgQGk1WF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvgQGk1WF .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvgQGk1WF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvgQGk1WF .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvgQGk1WF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvgQGk1WF .navbar.collapsed {
  justify-content: center;
}
.cid-uFvgQGk1WF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvgQGk1WF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvgQGk1WF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvgQGk1WF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvgQGk1WF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvgQGk1WF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvgQGk1WF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvgQGk1WF .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvgQGk1WF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvgQGk1WF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvgQGk1WF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvgQGk1WF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvgQGk1WF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvgQGk1WF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvgQGk1WF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvgQGk1WF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvgQGk1WF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvgQGk1WF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvgQGk1WF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvgQGk1WF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvgQGk1WF .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvgQGk1WF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvgQGk1WF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvgQGk1WF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvgQGk1WF .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-uFvgQGk1WF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvgQGk1WF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvgQGk1WF .dropdown-item.active,
.cid-uFvgQGk1WF .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvgQGk1WF .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvgQGk1WF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvgQGk1WF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvgQGk1WF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvgQGk1WF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvgQGk1WF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvgQGk1WF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvgQGk1WF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvgQGk1WF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvgQGk1WF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgQGk1WF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgQGk1WF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvgQGk1WF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgQGk1WF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvgQGk1WF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvgQGk1WF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgQGk1WF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvgQGk1WF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvgQGk1WF .navbar {
    height: 70px;
  }
  .cid-uFvgQGk1WF .navbar.opened {
    height: auto;
  }
  .cid-uFvgQGk1WF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvgQGk1WF .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvgQGk1WF .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvgQGk1WF .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvgQGk1WF .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvgQGk1WF .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvgQGk1WF .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvgQGk1WF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvgQGk1WF .text_widget {
  margin-bottom: 32px;
}
.cid-uFvgQGk1WF .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvgQGk1WF .text_widget a:hover,
.cid-uFvgQGk1WF .text_widget a:focus {
  opacity: .8;
}
.cid-uFvgQGk1WF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvgQGk1WF .navbar-caption {
  color: #ffffff;
}
.cid-uFvgQGk1WF .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvgQGk1WF .mbr-section-subtitle,
.cid-uFvgQGk1WF .text_widget,
.cid-uFvgQGk1WF .mbr-section-btn {
  text-align: center;
}
.cid-uFvgQGk1WF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvgQGNRkY {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvgQGNRkY .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvgQGNRkY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgQGNRkY .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvgQGNRkY .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvgQGNRkY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgQGNRkY p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvgQGNRkY {
    align-items: center;
  }
  .cid-uFvgQGNRkY .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvgQGNRkY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvgQGNRkY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvgQGNRkY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvgQGNRkY .content-wrap {
    width: 100%;
  }
}
.cid-uFvgQGNRkY .mbr-section-subtitle,
.cid-uFvgQGNRkY .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvgQGNRkY .mbr-text,
.cid-uFvgQGNRkY .mbr-section-btn {
  text-align: left;
}
.cid-uFvgQGNRkY .mbr-section-title {
  color: #ffffff;
}
.cid-uFwbzdP4aa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwbzdP4aa .mbr-text {
  color: #221b35;
}
.cid-uFwbzdP4aa .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwbzdP4aa h5,
.cid-uFwbzdP4aa h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwbzdP4aa h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwbzdP4aa h6 {
  line-height: 1.3 !important;
}
.cid-uFwbzdP4aa h6 span {
  padding-right: 2rem;
}
.cid-uFwbzdP4aa .mbr-section-title,
.cid-uFwbzdP4aa .align {
  color: #ffffff;
}
.cid-uFwbzdP4aa .mbr-section-subtitle,
.cid-uFwbzdP4aa .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwbzRC3OU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwbzRC3OU .mbr-section-head {
  width: 100%;
}
.cid-uFwbzRC3OU .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgQI5Ibs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFvgQI5Ibs .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvgQI5Ibs .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFvgQI5Ibs .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFvgQI5Ibs .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvgQI5Ibs .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvgQI5Ibs .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvgQI5Ibs .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvgQI5Ibs .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvgQI5Ibs .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvgQI5Ibs .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvgQI5Ibs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvgQI5Ibs .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgQI5Ibs .row {
    flex-direction: column-reverse;
  }
  .cid-uFvgQI5Ibs .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvgQI5Ibs .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgQI5Ibs .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvgQI5Ibs .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgQI5Ibs .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgQI5Ibs .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvgQI5Ibs .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFvgQI5Ibs .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFvgQI5Ibs .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFvgQI5Ibs .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvgQI5Ibs .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgQI5Ibs .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvgQI5Ibs .card .square_null {
    transform: translateX(0);
  }
  .cid-uFvgQI5Ibs .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFvgQI5Ibs .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFvgQI5Ibs .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvgQI5Ibs .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvgQI5Ibs .card-title {
  color: #232323;
}
.cid-uFvgQI5Ibs .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvgQI5Ibs .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvgQI5Ibs .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvgQI5Ibs .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFvgQI5Ibs H5 {
  color: #7d9e45;
}
.cid-uFB9nSThPN {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9nSThPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9nSThPN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9nSThPN .text-container {
  width: 100%;
}
.cid-uFB9nSThPN .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9nSThPN .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9nSThPN .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9nSThPN .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFvgQKhCVH {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvgQKhCVH .mbr-section-head {
  width: 100%;
}
.cid-uFvgQKhCVH .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgQKzFPt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgQKzFPt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgQKzFPt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgQKzFPt .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvgQKzFPt .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgQKzFPt .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvgQKzFPt .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvgQKzFPt .container {
    max-width: 100%;
  }
  .cid-uFvgQKzFPt .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvgQKzFPt .item-wrap {
  width: 100%;
}
.cid-uFvgQKzFPt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgQKzFPt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvgQKzFPt .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvgQKzFPt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvgQKzFPt .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvgQKzFPt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvgQKzFPt .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvgQKzFPt .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvgQKzFPt .col-links {
    padding-top: 20px;
  }
}
.cid-uFvgQKzFPt .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvgQKzFPt .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvgQKzFPt .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvgQKzFPt .list {
    text-align: center !important;
  }
}
.cid-uFvgQKzFPt .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvgQKzFPt .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvgQKzFPt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvgQKzFPt .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvgQKzFPt .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvgQKzFPt .list a:hover:before {
  width: 100%;
}
.cid-uFvgQKzFPt .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvgQKzFPt .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvgQKzFPt .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvgQKzFPt .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvgpm2Jct {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvgpm2Jct .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvgpm2Jct .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvgpm2Jct .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvgpm2Jct .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvgpm2Jct .menu_box .navbar.opened,
  .cid-uFvgpm2Jct .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvgpm2Jct nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvgpm2Jct .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvgpm2Jct .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvgpm2Jct .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvgpm2Jct .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvgpm2Jct .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvgpm2Jct .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvgpm2Jct .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvgpm2Jct .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvgpm2Jct .offcanvas-body .mbr-text,
  .cid-uFvgpm2Jct .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvgpm2Jct .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvgpm2Jct .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvgpm2Jct ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvgpm2Jct .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgpm2Jct .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvgpm2Jct .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvgpm2Jct li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvgpm2Jct .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvgpm2Jct .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvgpm2Jct .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvgpm2Jct .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvgpm2Jct .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvgpm2Jct .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvgpm2Jct .nav-item .nav-link:hover::before,
.cid-uFvgpm2Jct .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvgpm2Jct .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvgpm2Jct .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvgpm2Jct .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgpm2Jct .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvgpm2Jct .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvgpm2Jct .offcanvas_box {
    display: none;
  }
}
.cid-uFvgpm2Jct .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvgpm2Jct .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvgpm2Jct .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvgpm2Jct .container {
  display: flex;
  margin: auto;
}
.cid-uFvgpm2Jct .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvgpm2Jct .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvgpm2Jct .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvgpm2Jct .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvgpm2Jct .navbar-nav {
    margin: 0;
  }
}
.cid-uFvgpm2Jct .dropdown-menu,
.cid-uFvgpm2Jct .navbar.opened {
  background-color: false !important;
}
.cid-uFvgpm2Jct .nav-item:focus,
.cid-uFvgpm2Jct .nav-link:focus {
  outline: none;
}
.cid-uFvgpm2Jct .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvgpm2Jct .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvgpm2Jct .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvgpm2Jct .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvgpm2Jct .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvgpm2Jct .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvgpm2Jct .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvgpm2Jct .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvgpm2Jct .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvgpm2Jct .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvgpm2Jct .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvgpm2Jct .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvgpm2Jct .navbar.collapsed {
  justify-content: center;
}
.cid-uFvgpm2Jct .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvgpm2Jct .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvgpm2Jct .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvgpm2Jct .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvgpm2Jct .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvgpm2Jct .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvgpm2Jct .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvgpm2Jct .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvgpm2Jct .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvgpm2Jct .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvgpm2Jct .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvgpm2Jct .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvgpm2Jct .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvgpm2Jct .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvgpm2Jct .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvgpm2Jct .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvgpm2Jct .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvgpm2Jct .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvgpm2Jct .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvgpm2Jct .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvgpm2Jct .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvgpm2Jct .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvgpm2Jct .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvgpm2Jct .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvgpm2Jct .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-uFvgpm2Jct .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvgpm2Jct .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvgpm2Jct .dropdown-item.active,
.cid-uFvgpm2Jct .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvgpm2Jct .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvgpm2Jct .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvgpm2Jct .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvgpm2Jct .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvgpm2Jct ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvgpm2Jct .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvgpm2Jct button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvgpm2Jct button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvgpm2Jct button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvgpm2Jct button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgpm2Jct button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgpm2Jct button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvgpm2Jct nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgpm2Jct nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvgpm2Jct nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvgpm2Jct nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgpm2Jct a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvgpm2Jct .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvgpm2Jct .navbar {
    height: 70px;
  }
  .cid-uFvgpm2Jct .navbar.opened {
    height: auto;
  }
  .cid-uFvgpm2Jct .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvgpm2Jct .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvgpm2Jct .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvgpm2Jct .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvgpm2Jct .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvgpm2Jct .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvgpm2Jct .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvgpm2Jct .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvgpm2Jct .text_widget {
  margin-bottom: 32px;
}
.cid-uFvgpm2Jct .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvgpm2Jct .text_widget a:hover,
.cid-uFvgpm2Jct .text_widget a:focus {
  opacity: .8;
}
.cid-uFvgpm2Jct .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvgpm2Jct .navbar-caption {
  color: #ffffff;
}
.cid-uFvgpm2Jct .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvgpm2Jct .mbr-section-subtitle,
.cid-uFvgpm2Jct .text_widget,
.cid-uFvgpm2Jct .mbr-section-btn {
  text-align: center;
}
.cid-uFvgpm2Jct a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvgpmreT0 {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvgpmreT0 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvgpmreT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgpmreT0 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvgpmreT0 .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvgpmreT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgpmreT0 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvgpmreT0 {
    align-items: center;
  }
  .cid-uFvgpmreT0 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvgpmreT0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvgpmreT0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvgpmreT0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvgpmreT0 .content-wrap {
    width: 100%;
  }
}
.cid-uFvgpmreT0 .mbr-section-subtitle,
.cid-uFvgpmreT0 .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvgpmreT0 .mbr-text,
.cid-uFvgpmreT0 .mbr-section-btn {
  text-align: left;
}
.cid-uFvgpmreT0 .mbr-section-title {
  color: #ffffff;
}
.cid-uFwbKtHWfh {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwbKtHWfh .mbr-text {
  color: #221b35;
}
.cid-uFwbKtHWfh .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwbKtHWfh h5,
.cid-uFwbKtHWfh h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwbKtHWfh h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwbKtHWfh h6 {
  line-height: 1.3 !important;
}
.cid-uFwbKtHWfh h6 span {
  padding-right: 2rem;
}
.cid-uFwbKtHWfh .mbr-section-title,
.cid-uFwbKtHWfh .align {
  color: #ffffff;
}
.cid-uFwbKtHWfh .mbr-section-subtitle,
.cid-uFwbKtHWfh .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwbLaW5Ad {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwbLaW5Ad .mbr-section-head {
  width: 100%;
}
.cid-uFwbLaW5Ad .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgpocXH2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgpocXH2 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvgpocXH2 .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFvgpocXH2 .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFvgpocXH2 .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFvgpocXH2 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvgpocXH2 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvgpocXH2 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvgpocXH2 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvgpocXH2 .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvgpocXH2 .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvgpocXH2 .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvgpocXH2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvgpocXH2 .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpocXH2 .row {
    flex-direction: column-reverse;
  }
  .cid-uFvgpocXH2 .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvgpocXH2 .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgpocXH2 .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvgpocXH2 .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgpocXH2 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgpocXH2 .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFvgpocXH2 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvgpocXH2 .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFvgpocXH2 .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFvgpocXH2 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFvgpocXH2 .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvgpocXH2 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgpocXH2 .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvgpocXH2 .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFvgpocXH2 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFvgpocXH2 .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFvgpocXH2 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvgpocXH2 .card-title {
  color: #ffffff;
}
.cid-uFvgpocXH2 .mbr-text,
.cid-uFvgpocXH2 .linkBtn {
  color: #ffffff;
}
.cid-uFvgpocXH2 H5 {
  color: #7d9e45;
}
.cid-uFvgpocXH2 .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvgpocXH2 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvgpocXH2 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvgpocXH2 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvgpocXH2 .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFB9sb3HN6 {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFB9sb3HN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9sb3HN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9sb3HN6 .text-container {
  width: 100%;
}
.cid-uFB9sb3HN6 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9sb3HN6 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9sb3HN6 .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFvgppPTkN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvgppPTkN .mbr-section-head {
  width: 100%;
}
.cid-uFvgppPTkN .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgpq6Fy6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgpq6Fy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgpq6Fy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgpq6Fy6 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvgpq6Fy6 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgpq6Fy6 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvgpq6Fy6 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvgpq6Fy6 .container {
    max-width: 100%;
  }
  .cid-uFvgpq6Fy6 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvgpq6Fy6 .item-wrap {
  width: 100%;
}
.cid-uFvgpq6Fy6 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgpq6Fy6 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvgpq6Fy6 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvgpq6Fy6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvgpq6Fy6 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvgpq6Fy6 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvgpq6Fy6 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvgpq6Fy6 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvgpq6Fy6 .col-links {
    padding-top: 20px;
  }
}
.cid-uFvgpq6Fy6 .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvgpq6Fy6 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvgpq6Fy6 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvgpq6Fy6 .list {
    text-align: center !important;
  }
}
.cid-uFvgpq6Fy6 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvgpq6Fy6 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvgpq6Fy6 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvgpq6Fy6 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvgpq6Fy6 .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvgpq6Fy6 .list a:hover:before {
  width: 100%;
}
.cid-uFvgpq6Fy6 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvgpq6Fy6 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvgpq6Fy6 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvgpq6Fy6 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvgooQlWR {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvgooQlWR .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvgooQlWR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvgooQlWR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvgooQlWR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvgooQlWR .menu_box .navbar.opened,
  .cid-uFvgooQlWR .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvgooQlWR nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvgooQlWR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvgooQlWR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvgooQlWR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvgooQlWR .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvgooQlWR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvgooQlWR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvgooQlWR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvgooQlWR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvgooQlWR .offcanvas-body .mbr-text,
  .cid-uFvgooQlWR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvgooQlWR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvgooQlWR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvgooQlWR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvgooQlWR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgooQlWR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvgooQlWR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvgooQlWR li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvgooQlWR .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvgooQlWR .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvgooQlWR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvgooQlWR .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvgooQlWR .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvgooQlWR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvgooQlWR .nav-item .nav-link:hover::before,
.cid-uFvgooQlWR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvgooQlWR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvgooQlWR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvgooQlWR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvgooQlWR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvgooQlWR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvgooQlWR .offcanvas_box {
    display: none;
  }
}
.cid-uFvgooQlWR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvgooQlWR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvgooQlWR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvgooQlWR .container {
  display: flex;
  margin: auto;
}
.cid-uFvgooQlWR .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvgooQlWR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvgooQlWR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvgooQlWR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvgooQlWR .navbar-nav {
    margin: 0;
  }
}
.cid-uFvgooQlWR .dropdown-menu,
.cid-uFvgooQlWR .navbar.opened {
  background-color: false !important;
}
.cid-uFvgooQlWR .nav-item:focus,
.cid-uFvgooQlWR .nav-link:focus {
  outline: none;
}
.cid-uFvgooQlWR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvgooQlWR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvgooQlWR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvgooQlWR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvgooQlWR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvgooQlWR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvgooQlWR .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvgooQlWR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvgooQlWR .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvgooQlWR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvgooQlWR .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvgooQlWR .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvgooQlWR .navbar.collapsed {
  justify-content: center;
}
.cid-uFvgooQlWR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvgooQlWR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvgooQlWR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvgooQlWR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvgooQlWR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvgooQlWR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvgooQlWR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvgooQlWR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvgooQlWR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvgooQlWR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvgooQlWR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvgooQlWR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvgooQlWR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvgooQlWR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvgooQlWR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvgooQlWR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvgooQlWR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvgooQlWR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvgooQlWR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvgooQlWR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvgooQlWR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvgooQlWR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvgooQlWR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvgooQlWR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvgooQlWR .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-uFvgooQlWR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvgooQlWR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvgooQlWR .dropdown-item.active,
.cid-uFvgooQlWR .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvgooQlWR .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvgooQlWR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvgooQlWR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvgooQlWR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvgooQlWR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvgooQlWR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvgooQlWR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvgooQlWR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvgooQlWR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvgooQlWR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgooQlWR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvgooQlWR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvgooQlWR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgooQlWR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvgooQlWR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvgooQlWR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvgooQlWR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvgooQlWR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvgooQlWR .navbar {
    height: 70px;
  }
  .cid-uFvgooQlWR .navbar.opened {
    height: auto;
  }
  .cid-uFvgooQlWR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvgooQlWR .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvgooQlWR .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvgooQlWR .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvgooQlWR .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvgooQlWR .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvgooQlWR .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvgooQlWR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvgooQlWR .text_widget {
  margin-bottom: 32px;
}
.cid-uFvgooQlWR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvgooQlWR .text_widget a:hover,
.cid-uFvgooQlWR .text_widget a:focus {
  opacity: .8;
}
.cid-uFvgooQlWR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvgooQlWR .navbar-caption {
  color: #ffffff;
}
.cid-uFvgooQlWR .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvgooQlWR .mbr-section-subtitle,
.cid-uFvgooQlWR .text_widget,
.cid-uFvgooQlWR .mbr-section-btn {
  text-align: center;
}
.cid-uFvgooQlWR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvgope29x {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvgope29x .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvgope29x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgope29x .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvgope29x .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvgope29x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgope29x p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvgope29x {
    align-items: center;
  }
  .cid-uFvgope29x .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvgope29x .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvgope29x {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvgope29x .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvgope29x .content-wrap {
    width: 100%;
  }
}
.cid-uFvgope29x .mbr-section-subtitle,
.cid-uFvgope29x .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvgope29x .mbr-text,
.cid-uFvgope29x .mbr-section-btn {
  text-align: left;
}
.cid-uFvgope29x .mbr-section-title {
  color: #ffffff;
}
.cid-uFwbPlBWOw {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwbPlBWOw .mbr-text {
  color: #221b35;
}
.cid-uFwbPlBWOw .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwbPlBWOw h5,
.cid-uFwbPlBWOw h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwbPlBWOw h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwbPlBWOw h6 {
  line-height: 1.3 !important;
}
.cid-uFwbPlBWOw h6 span {
  padding-right: 2rem;
}
.cid-uFwbPlBWOw .mbr-section-title,
.cid-uFwbPlBWOw .align {
  color: #ffffff;
}
.cid-uFwbPlBWOw .mbr-section-subtitle,
.cid-uFwbPlBWOw .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwbPVSDHz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwbPVSDHz .mbr-section-head {
  width: 100%;
}
.cid-uFwbPVSDHz .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgorscu0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFvgorscu0 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvgorscu0 .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFvgorscu0 .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFvgorscu0 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvgorscu0 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvgorscu0 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvgorscu0 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvgorscu0 .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvgorscu0 .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvgorscu0 .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvgorscu0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvgorscu0 .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvgorscu0 .row {
    flex-direction: column-reverse;
  }
  .cid-uFvgorscu0 .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvgorscu0 .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgorscu0 .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvgorscu0 .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvgorscu0 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgorscu0 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvgorscu0 .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFvgorscu0 .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFvgorscu0 .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFvgorscu0 .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvgorscu0 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvgorscu0 .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvgorscu0 .card .square_null {
    transform: translateX(0);
  }
  .cid-uFvgorscu0 .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFvgorscu0 .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFvgorscu0 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvgorscu0 .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvgorscu0 .card-title {
  color: #232323;
}
.cid-uFvgorscu0 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvgorscu0 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvgorscu0 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvgorscu0 .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFvgorscu0 H5 {
  color: #7d9e45;
}
.cid-uFB9vDgnfl {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9vDgnfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9vDgnfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9vDgnfl .text-container {
  width: 100%;
}
.cid-uFB9vDgnfl .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9vDgnfl .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9vDgnfl .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9vDgnfl .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFvgosDUVh {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvgosDUVh .mbr-section-head {
  width: 100%;
}
.cid-uFvgosDUVh .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvgosWy1o {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvgosWy1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvgosWy1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvgosWy1o .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvgosWy1o .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvgosWy1o .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvgosWy1o .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvgosWy1o .container {
    max-width: 100%;
  }
  .cid-uFvgosWy1o .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvgosWy1o .item-wrap {
  width: 100%;
}
.cid-uFvgosWy1o .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvgosWy1o .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvgosWy1o .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvgosWy1o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgosWy1o .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvgosWy1o .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvgosWy1o .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvgosWy1o .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvgosWy1o .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvgosWy1o .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvgosWy1o .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvgosWy1o .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvgosWy1o .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvgosWy1o .col-links {
    padding-top: 20px;
  }
}
.cid-uFvgosWy1o .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvgosWy1o .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvgosWy1o .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvgosWy1o .list {
    text-align: center !important;
  }
}
.cid-uFvgosWy1o .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvgosWy1o .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvgosWy1o .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvgosWy1o .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvgosWy1o .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvgosWy1o .list a:hover:before {
  width: 100%;
}
.cid-uFvgosWy1o .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvgosWy1o .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvgosWy1o .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvgosWy1o .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFviTqoFJi {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFviTqoFJi .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFviTqoFJi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFviTqoFJi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFviTqoFJi .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFviTqoFJi .menu_box .navbar.opened,
  .cid-uFviTqoFJi .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFviTqoFJi nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFviTqoFJi .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFviTqoFJi .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFviTqoFJi .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFviTqoFJi .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFviTqoFJi .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFviTqoFJi .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFviTqoFJi .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFviTqoFJi .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFviTqoFJi .offcanvas-body .mbr-text,
  .cid-uFviTqoFJi .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFviTqoFJi .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFviTqoFJi .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFviTqoFJi ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFviTqoFJi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviTqoFJi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFviTqoFJi .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFviTqoFJi li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFviTqoFJi .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFviTqoFJi .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFviTqoFJi .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFviTqoFJi .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .nav-item {
    margin: 0 !important;
  }
}
.cid-uFviTqoFJi .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFviTqoFJi .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFviTqoFJi .nav-item .nav-link:hover::before,
.cid-uFviTqoFJi .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFviTqoFJi .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFviTqoFJi .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFviTqoFJi .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviTqoFJi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFviTqoFJi .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFviTqoFJi .offcanvas_box {
    display: none;
  }
}
.cid-uFviTqoFJi .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFviTqoFJi .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFviTqoFJi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFviTqoFJi .container {
  display: flex;
  margin: auto;
}
.cid-uFviTqoFJi .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFviTqoFJi .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFviTqoFJi .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFviTqoFJi .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFviTqoFJi .navbar-nav {
    margin: 0;
  }
}
.cid-uFviTqoFJi .dropdown-menu,
.cid-uFviTqoFJi .navbar.opened {
  background-color: false !important;
}
.cid-uFviTqoFJi .nav-item:focus,
.cid-uFviTqoFJi .nav-link:focus {
  outline: none;
}
.cid-uFviTqoFJi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFviTqoFJi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFviTqoFJi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFviTqoFJi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFviTqoFJi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFviTqoFJi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFviTqoFJi .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFviTqoFJi .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFviTqoFJi .navbar.opened {
  transition: all 0.3s;
}
.cid-uFviTqoFJi .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFviTqoFJi .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFviTqoFJi .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFviTqoFJi .navbar.collapsed {
  justify-content: center;
}
.cid-uFviTqoFJi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFviTqoFJi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFviTqoFJi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFviTqoFJi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFviTqoFJi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFviTqoFJi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFviTqoFJi .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFviTqoFJi .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFviTqoFJi .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFviTqoFJi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFviTqoFJi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFviTqoFJi .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFviTqoFJi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFviTqoFJi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFviTqoFJi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFviTqoFJi .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFviTqoFJi .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFviTqoFJi .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFviTqoFJi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFviTqoFJi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFviTqoFJi .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFviTqoFJi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFviTqoFJi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFviTqoFJi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFviTqoFJi .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-uFviTqoFJi .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFviTqoFJi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFviTqoFJi .dropdown-item.active,
.cid-uFviTqoFJi .dropdown-item:active {
  background-color: transparent;
}
.cid-uFviTqoFJi .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFviTqoFJi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFviTqoFJi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFviTqoFJi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFviTqoFJi ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFviTqoFJi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFviTqoFJi button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFviTqoFJi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFviTqoFJi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFviTqoFJi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviTqoFJi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviTqoFJi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFviTqoFJi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviTqoFJi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFviTqoFJi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFviTqoFJi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviTqoFJi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFviTqoFJi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFviTqoFJi .navbar {
    height: 70px;
  }
  .cid-uFviTqoFJi .navbar.opened {
    height: auto;
  }
  .cid-uFviTqoFJi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFviTqoFJi .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFviTqoFJi .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFviTqoFJi .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFviTqoFJi .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFviTqoFJi .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFviTqoFJi .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFviTqoFJi .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFviTqoFJi .text_widget {
  margin-bottom: 32px;
}
.cid-uFviTqoFJi .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFviTqoFJi .text_widget a:hover,
.cid-uFviTqoFJi .text_widget a:focus {
  opacity: .8;
}
.cid-uFviTqoFJi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFviTqoFJi .navbar-caption {
  color: #ffffff;
}
.cid-uFviTqoFJi .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFviTqoFJi .mbr-section-subtitle,
.cid-uFviTqoFJi .text_widget,
.cid-uFviTqoFJi .mbr-section-btn {
  text-align: center;
}
.cid-uFviTqoFJi a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFviTqM3Ys {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFviTqM3Ys .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFviTqM3Ys .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviTqM3Ys .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFviTqM3Ys .line {
    margin-bottom: 10rem;
  }
}
.cid-uFviTqM3Ys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviTqM3Ys p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFviTqM3Ys {
    align-items: center;
  }
  .cid-uFviTqM3Ys .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFviTqM3Ys .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFviTqM3Ys {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFviTqM3Ys .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFviTqM3Ys .content-wrap {
    width: 100%;
  }
}
.cid-uFviTqM3Ys .mbr-section-subtitle,
.cid-uFviTqM3Ys .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFviTqM3Ys .mbr-text,
.cid-uFviTqM3Ys .mbr-section-btn {
  text-align: left;
}
.cid-uFviTqM3Ys .mbr-section-title {
  color: #ffffff;
}
.cid-uFwbXbmlzs {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwbXbmlzs .mbr-text {
  color: #221b35;
}
.cid-uFwbXbmlzs .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwbXbmlzs h5,
.cid-uFwbXbmlzs h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwbXbmlzs h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwbXbmlzs h6 {
  line-height: 1.3 !important;
}
.cid-uFwbXbmlzs h6 span {
  padding-right: 2rem;
}
.cid-uFwbXbmlzs .mbr-section-title,
.cid-uFwbXbmlzs .align {
  color: #ffffff;
}
.cid-uFwbXbmlzs .mbr-section-subtitle,
.cid-uFwbXbmlzs .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwbXYb5cH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwbXYb5cH .mbr-section-head {
  width: 100%;
}
.cid-uFwbXYb5cH .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviTrhg8F {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFviTrhg8F .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFviTrhg8F .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFviTrhg8F .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFviTrhg8F .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFviTrhg8F .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFviTrhg8F .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFviTrhg8F .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFviTrhg8F .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFviTrhg8F .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFviTrhg8F .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFviTrhg8F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFviTrhg8F .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviTrhg8F .row {
    flex-direction: column-reverse;
  }
  .cid-uFviTrhg8F .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFviTrhg8F .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFviTrhg8F .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFviTrhg8F .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFviTrhg8F .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviTrhg8F .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFviTrhg8F .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFviTrhg8F .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFviTrhg8F .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFviTrhg8F .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFviTrhg8F .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviTrhg8F .card:hover .square_fill {
    transform: none;
  }
  .cid-uFviTrhg8F .card .square_null {
    transform: translateX(0);
  }
  .cid-uFviTrhg8F .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFviTrhg8F .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFviTrhg8F .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFviTrhg8F .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFviTrhg8F .card-title {
  color: #232323;
}
.cid-uFviTrhg8F .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFviTrhg8F .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFviTrhg8F .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFviTrhg8F .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFviTrhg8F H5 {
  color: #7d9e45;
}
.cid-uFB9zAOKmT {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9zAOKmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9zAOKmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9zAOKmT .text-container {
  width: 100%;
}
.cid-uFB9zAOKmT .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9zAOKmT .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9zAOKmT .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9zAOKmT .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFviTu3tB4 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFviTu3tB4 .mbr-section-head {
  width: 100%;
}
.cid-uFviTu3tB4 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviTumFrf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviTumFrf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviTumFrf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviTumFrf .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFviTumFrf .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFviTumFrf .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFviTumFrf .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFviTumFrf .container {
    max-width: 100%;
  }
  .cid-uFviTumFrf .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFviTumFrf .item-wrap {
  width: 100%;
}
.cid-uFviTumFrf .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFviTumFrf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFviTumFrf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFviTumFrf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviTumFrf .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFviTumFrf .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviTumFrf .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFviTumFrf .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFviTumFrf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFviTumFrf .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFviTumFrf .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFviTumFrf .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFviTumFrf .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFviTumFrf .col-links {
    padding-top: 20px;
  }
}
.cid-uFviTumFrf .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFviTumFrf .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFviTumFrf .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFviTumFrf .list {
    text-align: center !important;
  }
}
.cid-uFviTumFrf .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFviTumFrf .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFviTumFrf .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFviTumFrf .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFviTumFrf .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFviTumFrf .list a:hover:before {
  width: 100%;
}
.cid-uFviTumFrf .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFviTumFrf .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFviTumFrf .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFviTumFrf .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFviSWcHp0 {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFviSWcHp0 .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFviSWcHp0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFviSWcHp0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFviSWcHp0 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFviSWcHp0 .menu_box .navbar.opened,
  .cid-uFviSWcHp0 .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFviSWcHp0 nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFviSWcHp0 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFviSWcHp0 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFviSWcHp0 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFviSWcHp0 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFviSWcHp0 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFviSWcHp0 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFviSWcHp0 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFviSWcHp0 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFviSWcHp0 .offcanvas-body .mbr-text,
  .cid-uFviSWcHp0 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFviSWcHp0 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFviSWcHp0 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFviSWcHp0 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFviSWcHp0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviSWcHp0 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFviSWcHp0 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFviSWcHp0 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFviSWcHp0 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFviSWcHp0 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFviSWcHp0 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFviSWcHp0 .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .nav-item {
    margin: 0 !important;
  }
}
.cid-uFviSWcHp0 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFviSWcHp0 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFviSWcHp0 .nav-item .nav-link:hover::before,
.cid-uFviSWcHp0 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFviSWcHp0 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFviSWcHp0 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFviSWcHp0 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviSWcHp0 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFviSWcHp0 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFviSWcHp0 .offcanvas_box {
    display: none;
  }
}
.cid-uFviSWcHp0 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFviSWcHp0 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFviSWcHp0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFviSWcHp0 .container {
  display: flex;
  margin: auto;
}
.cid-uFviSWcHp0 .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFviSWcHp0 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFviSWcHp0 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFviSWcHp0 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFviSWcHp0 .navbar-nav {
    margin: 0;
  }
}
.cid-uFviSWcHp0 .dropdown-menu,
.cid-uFviSWcHp0 .navbar.opened {
  background-color: false !important;
}
.cid-uFviSWcHp0 .nav-item:focus,
.cid-uFviSWcHp0 .nav-link:focus {
  outline: none;
}
.cid-uFviSWcHp0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFviSWcHp0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFviSWcHp0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFviSWcHp0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFviSWcHp0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFviSWcHp0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFviSWcHp0 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFviSWcHp0 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFviSWcHp0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uFviSWcHp0 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFviSWcHp0 .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFviSWcHp0 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFviSWcHp0 .navbar.collapsed {
  justify-content: center;
}
.cid-uFviSWcHp0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFviSWcHp0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFviSWcHp0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFviSWcHp0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFviSWcHp0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFviSWcHp0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFviSWcHp0 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFviSWcHp0 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFviSWcHp0 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFviSWcHp0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFviSWcHp0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFviSWcHp0 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFviSWcHp0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFviSWcHp0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFviSWcHp0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFviSWcHp0 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFviSWcHp0 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFviSWcHp0 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFviSWcHp0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFviSWcHp0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFviSWcHp0 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFviSWcHp0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFviSWcHp0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFviSWcHp0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFviSWcHp0 .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-uFviSWcHp0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFviSWcHp0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFviSWcHp0 .dropdown-item.active,
.cid-uFviSWcHp0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFviSWcHp0 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFviSWcHp0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFviSWcHp0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFviSWcHp0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFviSWcHp0 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFviSWcHp0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFviSWcHp0 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFviSWcHp0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFviSWcHp0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFviSWcHp0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviSWcHp0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviSWcHp0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFviSWcHp0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviSWcHp0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFviSWcHp0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFviSWcHp0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviSWcHp0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFviSWcHp0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFviSWcHp0 .navbar {
    height: 70px;
  }
  .cid-uFviSWcHp0 .navbar.opened {
    height: auto;
  }
  .cid-uFviSWcHp0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFviSWcHp0 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFviSWcHp0 .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFviSWcHp0 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFviSWcHp0 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFviSWcHp0 .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFviSWcHp0 .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFviSWcHp0 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFviSWcHp0 .text_widget {
  margin-bottom: 32px;
}
.cid-uFviSWcHp0 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFviSWcHp0 .text_widget a:hover,
.cid-uFviSWcHp0 .text_widget a:focus {
  opacity: .8;
}
.cid-uFviSWcHp0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFviSWcHp0 .navbar-caption {
  color: #ffffff;
}
.cid-uFviSWcHp0 .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFviSWcHp0 .mbr-section-subtitle,
.cid-uFviSWcHp0 .text_widget,
.cid-uFviSWcHp0 .mbr-section-btn {
  text-align: center;
}
.cid-uFviSWcHp0 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFviSWAjL4 {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFviSWAjL4 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFviSWAjL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviSWAjL4 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFviSWAjL4 .line {
    margin-bottom: 10rem;
  }
}
.cid-uFviSWAjL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviSWAjL4 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFviSWAjL4 {
    align-items: center;
  }
  .cid-uFviSWAjL4 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFviSWAjL4 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFviSWAjL4 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFviSWAjL4 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFviSWAjL4 .content-wrap {
    width: 100%;
  }
}
.cid-uFviSWAjL4 .mbr-section-subtitle,
.cid-uFviSWAjL4 .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFviSWAjL4 .mbr-text,
.cid-uFviSWAjL4 .mbr-section-btn {
  text-align: left;
}
.cid-uFviSWAjL4 .mbr-section-title {
  color: #ffffff;
}
.cid-uFwc6OPOec {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwc6OPOec .mbr-text {
  color: #221b35;
}
.cid-uFwc6OPOec .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwc6OPOec h5,
.cid-uFwc6OPOec h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwc6OPOec h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwc6OPOec h6 {
  line-height: 1.3 !important;
}
.cid-uFwc6OPOec h6 span {
  padding-right: 2rem;
}
.cid-uFwc6OPOec .mbr-section-title,
.cid-uFwc6OPOec .align {
  color: #ffffff;
}
.cid-uFwc6OPOec .mbr-section-subtitle,
.cid-uFwc6OPOec .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwc7N7sug {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwc7N7sug .mbr-section-head {
  width: 100%;
}
.cid-uFwc7N7sug .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviSXrdhM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviSXrdhM .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFviSXrdhM .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFviSXrdhM .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFviSXrdhM .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFviSXrdhM .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFviSXrdhM .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFviSXrdhM .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFviSXrdhM .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFviSXrdhM .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFviSXrdhM .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFviSXrdhM .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFviSXrdhM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFviSXrdhM .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviSXrdhM .row {
    flex-direction: column-reverse;
  }
  .cid-uFviSXrdhM .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFviSXrdhM .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFviSXrdhM .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFviSXrdhM .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFviSXrdhM .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviSXrdhM .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFviSXrdhM .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFviSXrdhM .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFviSXrdhM .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFviSXrdhM .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFviSXrdhM .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFviSXrdhM .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviSXrdhM .card:hover .square_fill {
    transform: none;
  }
  .cid-uFviSXrdhM .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFviSXrdhM .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFviSXrdhM .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFviSXrdhM .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFviSXrdhM .card-title {
  color: #ffffff;
}
.cid-uFviSXrdhM .mbr-text,
.cid-uFviSXrdhM .linkBtn {
  color: #ffffff;
}
.cid-uFviSXrdhM H5 {
  color: #7d9e45;
}
.cid-uFviSXrdhM .display-7 {
  color: #ffffff;
}
.cid-uFviSXrdhM .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFviSXrdhM .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFviSXrdhM .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFviSXrdhM .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFviSXrdhM .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFB9CDWtl1 {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFB9CDWtl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9CDWtl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9CDWtl1 .text-container {
  width: 100%;
}
.cid-uFB9CDWtl1 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9CDWtl1 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9CDWtl1 .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFviT01t0x {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFviT01t0x .mbr-section-head {
  width: 100%;
}
.cid-uFviT01t0x .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviT0npkg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviT0npkg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviT0npkg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviT0npkg .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFviT0npkg .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFviT0npkg .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFviT0npkg .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFviT0npkg .container {
    max-width: 100%;
  }
  .cid-uFviT0npkg .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFviT0npkg .item-wrap {
  width: 100%;
}
.cid-uFviT0npkg .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFviT0npkg .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFviT0npkg .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFviT0npkg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviT0npkg .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFviT0npkg .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviT0npkg .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFviT0npkg .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFviT0npkg .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFviT0npkg .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFviT0npkg .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFviT0npkg .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFviT0npkg .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFviT0npkg .col-links {
    padding-top: 20px;
  }
}
.cid-uFviT0npkg .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFviT0npkg .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFviT0npkg .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFviT0npkg .list {
    text-align: center !important;
  }
}
.cid-uFviT0npkg .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFviT0npkg .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFviT0npkg .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFviT0npkg .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFviT0npkg .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFviT0npkg .list a:hover:before {
  width: 100%;
}
.cid-uFviT0npkg .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFviT0npkg .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFviT0npkg .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFviT0npkg .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFviSpWZwr {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFviSpWZwr .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFviSpWZwr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFviSpWZwr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFviSpWZwr .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFviSpWZwr .menu_box .navbar.opened,
  .cid-uFviSpWZwr .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFviSpWZwr nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFviSpWZwr .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFviSpWZwr .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFviSpWZwr .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFviSpWZwr .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFviSpWZwr .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFviSpWZwr .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFviSpWZwr .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFviSpWZwr .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFviSpWZwr .offcanvas-body .mbr-text,
  .cid-uFviSpWZwr .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFviSpWZwr .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFviSpWZwr .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFviSpWZwr ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFviSpWZwr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviSpWZwr .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFviSpWZwr .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFviSpWZwr li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFviSpWZwr .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFviSpWZwr .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFviSpWZwr .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFviSpWZwr .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .nav-item {
    margin: 0 !important;
  }
}
.cid-uFviSpWZwr .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFviSpWZwr .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFviSpWZwr .nav-item .nav-link:hover::before,
.cid-uFviSpWZwr .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFviSpWZwr .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFviSpWZwr .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFviSpWZwr .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviSpWZwr .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFviSpWZwr .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFviSpWZwr .offcanvas_box {
    display: none;
  }
}
.cid-uFviSpWZwr .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFviSpWZwr .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFviSpWZwr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFviSpWZwr .container {
  display: flex;
  margin: auto;
}
.cid-uFviSpWZwr .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFviSpWZwr .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFviSpWZwr .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFviSpWZwr .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFviSpWZwr .navbar-nav {
    margin: 0;
  }
}
.cid-uFviSpWZwr .dropdown-menu,
.cid-uFviSpWZwr .navbar.opened {
  background-color: false !important;
}
.cid-uFviSpWZwr .nav-item:focus,
.cid-uFviSpWZwr .nav-link:focus {
  outline: none;
}
.cid-uFviSpWZwr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFviSpWZwr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFviSpWZwr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFviSpWZwr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFviSpWZwr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFviSpWZwr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFviSpWZwr .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFviSpWZwr .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFviSpWZwr .navbar.opened {
  transition: all 0.3s;
}
.cid-uFviSpWZwr .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFviSpWZwr .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFviSpWZwr .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFviSpWZwr .navbar.collapsed {
  justify-content: center;
}
.cid-uFviSpWZwr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFviSpWZwr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFviSpWZwr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFviSpWZwr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFviSpWZwr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFviSpWZwr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFviSpWZwr .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFviSpWZwr .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFviSpWZwr .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFviSpWZwr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFviSpWZwr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFviSpWZwr .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFviSpWZwr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFviSpWZwr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFviSpWZwr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFviSpWZwr .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFviSpWZwr .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFviSpWZwr .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFviSpWZwr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFviSpWZwr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFviSpWZwr .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFviSpWZwr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFviSpWZwr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFviSpWZwr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFviSpWZwr .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-uFviSpWZwr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFviSpWZwr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFviSpWZwr .dropdown-item.active,
.cid-uFviSpWZwr .dropdown-item:active {
  background-color: transparent;
}
.cid-uFviSpWZwr .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFviSpWZwr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFviSpWZwr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFviSpWZwr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFviSpWZwr ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFviSpWZwr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFviSpWZwr button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFviSpWZwr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFviSpWZwr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFviSpWZwr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviSpWZwr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviSpWZwr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFviSpWZwr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviSpWZwr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFviSpWZwr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFviSpWZwr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviSpWZwr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFviSpWZwr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFviSpWZwr .navbar {
    height: 70px;
  }
  .cid-uFviSpWZwr .navbar.opened {
    height: auto;
  }
  .cid-uFviSpWZwr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFviSpWZwr .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFviSpWZwr .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFviSpWZwr .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFviSpWZwr .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFviSpWZwr .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFviSpWZwr .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFviSpWZwr .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFviSpWZwr .text_widget {
  margin-bottom: 32px;
}
.cid-uFviSpWZwr .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFviSpWZwr .text_widget a:hover,
.cid-uFviSpWZwr .text_widget a:focus {
  opacity: .8;
}
.cid-uFviSpWZwr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFviSpWZwr .navbar-caption {
  color: #ffffff;
}
.cid-uFviSpWZwr .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFviSpWZwr .mbr-section-subtitle,
.cid-uFviSpWZwr .text_widget,
.cid-uFviSpWZwr .mbr-section-btn {
  text-align: center;
}
.cid-uFviSpWZwr a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFviSqk6xW {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFviSqk6xW .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFviSqk6xW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviSqk6xW .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFviSqk6xW .line {
    margin-bottom: 10rem;
  }
}
.cid-uFviSqk6xW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviSqk6xW p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFviSqk6xW {
    align-items: center;
  }
  .cid-uFviSqk6xW .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFviSqk6xW .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFviSqk6xW {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFviSqk6xW .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFviSqk6xW .content-wrap {
    width: 100%;
  }
}
.cid-uFviSqk6xW .mbr-section-subtitle,
.cid-uFviSqk6xW .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFviSqk6xW .mbr-text,
.cid-uFviSqk6xW .mbr-section-btn {
  text-align: left;
}
.cid-uFviSqk6xW .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcexkj89 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcexkj89 .mbr-text {
  color: #221b35;
}
.cid-uFwcexkj89 .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcexkj89 h5,
.cid-uFwcexkj89 h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcexkj89 h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcexkj89 h6 {
  line-height: 1.3 !important;
}
.cid-uFwcexkj89 h6 span {
  padding-right: 2rem;
}
.cid-uFwcexkj89 .mbr-section-title,
.cid-uFwcexkj89 .align {
  color: #ffffff;
}
.cid-uFwcexkj89 .mbr-section-subtitle,
.cid-uFwcexkj89 .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwcfk3sbv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwcfk3sbv .mbr-section-head {
  width: 100%;
}
.cid-uFwcfk3sbv .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviSry6rA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFviSry6rA .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFviSry6rA .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFviSry6rA .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFviSry6rA .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFviSry6rA .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFviSry6rA .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFviSry6rA .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFviSry6rA .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFviSry6rA .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFviSry6rA .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFviSry6rA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFviSry6rA .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviSry6rA .row {
    flex-direction: column-reverse;
  }
  .cid-uFviSry6rA .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFviSry6rA .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFviSry6rA .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFviSry6rA .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFviSry6rA .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviSry6rA .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFviSry6rA .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFviSry6rA .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFviSry6rA .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFviSry6rA .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFviSry6rA .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviSry6rA .card:hover .square_fill {
    transform: none;
  }
  .cid-uFviSry6rA .card .square_null {
    transform: translateX(0);
  }
  .cid-uFviSry6rA .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFviSry6rA .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFviSry6rA .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFviSry6rA .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFviSry6rA .card-title {
  color: #232323;
}
.cid-uFviSry6rA .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFviSry6rA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFviSry6rA .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFviSry6rA .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFviSry6rA H5 {
  color: #7d9e45;
}
.cid-uFB9GbDdTC {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9GbDdTC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9GbDdTC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9GbDdTC .text-container {
  width: 100%;
}
.cid-uFB9GbDdTC .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9GbDdTC .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9GbDdTC .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9GbDdTC .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFviStyEV5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFviStyEV5 .mbr-section-head {
  width: 100%;
}
.cid-uFviStyEV5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviStRorN {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviStRorN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviStRorN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviStRorN .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFviStRorN .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFviStRorN .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFviStRorN .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFviStRorN .container {
    max-width: 100%;
  }
  .cid-uFviStRorN .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFviStRorN .item-wrap {
  width: 100%;
}
.cid-uFviStRorN .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFviStRorN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFviStRorN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFviStRorN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviStRorN .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFviStRorN .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviStRorN .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFviStRorN .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFviStRorN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFviStRorN .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFviStRorN .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFviStRorN .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFviStRorN .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFviStRorN .col-links {
    padding-top: 20px;
  }
}
.cid-uFviStRorN .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFviStRorN .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFviStRorN .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFviStRorN .list {
    text-align: center !important;
  }
}
.cid-uFviStRorN .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFviStRorN .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFviStRorN .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFviStRorN .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFviStRorN .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFviStRorN .list a:hover:before {
  width: 100%;
}
.cid-uFviStRorN .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFviStRorN .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFviStRorN .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFviStRorN .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFviRREWwc {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFviRREWwc .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFviRREWwc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFviRREWwc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFviRREWwc .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFviRREWwc .menu_box .navbar.opened,
  .cid-uFviRREWwc .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFviRREWwc nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFviRREWwc .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFviRREWwc .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFviRREWwc .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFviRREWwc .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFviRREWwc .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFviRREWwc .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFviRREWwc .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFviRREWwc .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFviRREWwc .offcanvas-body .mbr-text,
  .cid-uFviRREWwc .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFviRREWwc .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFviRREWwc .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFviRREWwc ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFviRREWwc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviRREWwc .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFviRREWwc .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFviRREWwc li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFviRREWwc .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFviRREWwc .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFviRREWwc .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFviRREWwc .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .nav-item {
    margin: 0 !important;
  }
}
.cid-uFviRREWwc .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFviRREWwc .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFviRREWwc .nav-item .nav-link:hover::before,
.cid-uFviRREWwc .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFviRREWwc .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFviRREWwc .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFviRREWwc .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviRREWwc .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFviRREWwc .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFviRREWwc .offcanvas_box {
    display: none;
  }
}
.cid-uFviRREWwc .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFviRREWwc .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFviRREWwc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFviRREWwc .container {
  display: flex;
  margin: auto;
}
.cid-uFviRREWwc .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFviRREWwc .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFviRREWwc .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFviRREWwc .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFviRREWwc .navbar-nav {
    margin: 0;
  }
}
.cid-uFviRREWwc .dropdown-menu,
.cid-uFviRREWwc .navbar.opened {
  background-color: false !important;
}
.cid-uFviRREWwc .nav-item:focus,
.cid-uFviRREWwc .nav-link:focus {
  outline: none;
}
.cid-uFviRREWwc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFviRREWwc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFviRREWwc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFviRREWwc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFviRREWwc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFviRREWwc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFviRREWwc .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFviRREWwc .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFviRREWwc .navbar.opened {
  transition: all 0.3s;
}
.cid-uFviRREWwc .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFviRREWwc .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFviRREWwc .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFviRREWwc .navbar.collapsed {
  justify-content: center;
}
.cid-uFviRREWwc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFviRREWwc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFviRREWwc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFviRREWwc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFviRREWwc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFviRREWwc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFviRREWwc .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFviRREWwc .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFviRREWwc .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFviRREWwc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFviRREWwc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFviRREWwc .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFviRREWwc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFviRREWwc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFviRREWwc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFviRREWwc .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFviRREWwc .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFviRREWwc .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFviRREWwc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFviRREWwc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFviRREWwc .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFviRREWwc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFviRREWwc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFviRREWwc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFviRREWwc .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-uFviRREWwc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFviRREWwc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFviRREWwc .dropdown-item.active,
.cid-uFviRREWwc .dropdown-item:active {
  background-color: transparent;
}
.cid-uFviRREWwc .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFviRREWwc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFviRREWwc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFviRREWwc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFviRREWwc ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFviRREWwc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFviRREWwc button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFviRREWwc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFviRREWwc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFviRREWwc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviRREWwc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviRREWwc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFviRREWwc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviRREWwc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFviRREWwc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFviRREWwc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviRREWwc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFviRREWwc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFviRREWwc .navbar {
    height: 70px;
  }
  .cid-uFviRREWwc .navbar.opened {
    height: auto;
  }
  .cid-uFviRREWwc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFviRREWwc .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFviRREWwc .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFviRREWwc .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFviRREWwc .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFviRREWwc .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFviRREWwc .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFviRREWwc .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFviRREWwc .text_widget {
  margin-bottom: 32px;
}
.cid-uFviRREWwc .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFviRREWwc .text_widget a:hover,
.cid-uFviRREWwc .text_widget a:focus {
  opacity: .8;
}
.cid-uFviRREWwc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFviRREWwc .navbar-caption {
  color: #ffffff;
}
.cid-uFviRREWwc .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFviRREWwc .mbr-section-subtitle,
.cid-uFviRREWwc .text_widget,
.cid-uFviRREWwc .mbr-section-btn {
  text-align: center;
}
.cid-uFviRREWwc a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFviRS24wE {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFviRS24wE .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFviRS24wE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviRS24wE .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFviRS24wE .line {
    margin-bottom: 10rem;
  }
}
.cid-uFviRS24wE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviRS24wE p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFviRS24wE {
    align-items: center;
  }
  .cid-uFviRS24wE .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFviRS24wE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFviRS24wE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFviRS24wE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFviRS24wE .content-wrap {
    width: 100%;
  }
}
.cid-uFviRS24wE .mbr-section-subtitle,
.cid-uFviRS24wE .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFviRS24wE .mbr-text,
.cid-uFviRS24wE .mbr-section-btn {
  text-align: left;
}
.cid-uFviRS24wE .mbr-section-title {
  color: #ffffff;
}
.cid-uFwckQmhze {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwckQmhze .mbr-text {
  color: #221b35;
}
.cid-uFwckQmhze .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwckQmhze h5,
.cid-uFwckQmhze h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwckQmhze h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwckQmhze h6 {
  line-height: 1.3 !important;
}
.cid-uFwckQmhze h6 span {
  padding-right: 2rem;
}
.cid-uFwckQmhze .mbr-section-title,
.cid-uFwckQmhze .align {
  color: #ffffff;
}
.cid-uFwckQmhze .mbr-section-subtitle,
.cid-uFwckQmhze .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwclXS7eV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwclXS7eV .mbr-section-head {
  width: 100%;
}
.cid-uFwclXS7eV .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviRTDUBF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviRTDUBF .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFviRTDUBF .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFviRTDUBF .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFviRTDUBF .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFviRTDUBF .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFviRTDUBF .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFviRTDUBF .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFviRTDUBF .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFviRTDUBF .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFviRTDUBF .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFviRTDUBF .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFviRTDUBF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFviRTDUBF .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviRTDUBF .row {
    flex-direction: column-reverse;
  }
  .cid-uFviRTDUBF .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFviRTDUBF .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFviRTDUBF .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFviRTDUBF .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFviRTDUBF .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviRTDUBF .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFviRTDUBF .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFviRTDUBF .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFviRTDUBF .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFviRTDUBF .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFviRTDUBF .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFviRTDUBF .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviRTDUBF .card:hover .square_fill {
    transform: none;
  }
  .cid-uFviRTDUBF .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFviRTDUBF .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFviRTDUBF .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFviRTDUBF .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFviRTDUBF .card-title {
  color: #ffffff;
}
.cid-uFviRTDUBF .mbr-text,
.cid-uFviRTDUBF .linkBtn {
  color: #ffffff;
}
.cid-uFviRTDUBF H5 {
  color: #7d9e45;
}
.cid-uFviRTDUBF .display-7 {
  color: #ffffff;
}
.cid-uFviRTDUBF .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFviRTDUBF .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFviRTDUBF .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFviRTDUBF .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFviRTDUBF .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFB9JziggV {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFB9JziggV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9JziggV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9JziggV .text-container {
  width: 100%;
}
.cid-uFB9JziggV .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9JziggV .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9JziggV .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFviRVgls3 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFviRVgls3 .mbr-section-head {
  width: 100%;
}
.cid-uFviRVgls3 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviRVy9Rw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviRVy9Rw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviRVy9Rw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviRVy9Rw .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFviRVy9Rw .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFviRVy9Rw .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFviRVy9Rw .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFviRVy9Rw .container {
    max-width: 100%;
  }
  .cid-uFviRVy9Rw .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFviRVy9Rw .item-wrap {
  width: 100%;
}
.cid-uFviRVy9Rw .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviRVy9Rw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFviRVy9Rw .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFviRVy9Rw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFviRVy9Rw .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFviRVy9Rw .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFviRVy9Rw .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFviRVy9Rw .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFviRVy9Rw .col-links {
    padding-top: 20px;
  }
}
.cid-uFviRVy9Rw .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFviRVy9Rw .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFviRVy9Rw .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFviRVy9Rw .list {
    text-align: center !important;
  }
}
.cid-uFviRVy9Rw .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFviRVy9Rw .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFviRVy9Rw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFviRVy9Rw .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFviRVy9Rw .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFviRVy9Rw .list a:hover:before {
  width: 100%;
}
.cid-uFviRVy9Rw .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFviRVy9Rw .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFviRVy9Rw .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFviRVy9Rw .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFviR8qL2F {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFviR8qL2F .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFviR8qL2F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFviR8qL2F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFviR8qL2F .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFviR8qL2F .menu_box .navbar.opened,
  .cid-uFviR8qL2F .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFviR8qL2F nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFviR8qL2F .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFviR8qL2F .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFviR8qL2F .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFviR8qL2F .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFviR8qL2F .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFviR8qL2F .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFviR8qL2F .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFviR8qL2F .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFviR8qL2F .offcanvas-body .mbr-text,
  .cid-uFviR8qL2F .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFviR8qL2F .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFviR8qL2F .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFviR8qL2F ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFviR8qL2F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviR8qL2F .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFviR8qL2F .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFviR8qL2F li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFviR8qL2F .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFviR8qL2F .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFviR8qL2F .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFviR8qL2F .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .nav-item {
    margin: 0 !important;
  }
}
.cid-uFviR8qL2F .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFviR8qL2F .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFviR8qL2F .nav-item .nav-link:hover::before,
.cid-uFviR8qL2F .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFviR8qL2F .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFviR8qL2F .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFviR8qL2F .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFviR8qL2F .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFviR8qL2F .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFviR8qL2F .offcanvas_box {
    display: none;
  }
}
.cid-uFviR8qL2F .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFviR8qL2F .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFviR8qL2F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFviR8qL2F .container {
  display: flex;
  margin: auto;
}
.cid-uFviR8qL2F .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFviR8qL2F .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFviR8qL2F .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFviR8qL2F .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFviR8qL2F .navbar-nav {
    margin: 0;
  }
}
.cid-uFviR8qL2F .dropdown-menu,
.cid-uFviR8qL2F .navbar.opened {
  background-color: false !important;
}
.cid-uFviR8qL2F .nav-item:focus,
.cid-uFviR8qL2F .nav-link:focus {
  outline: none;
}
.cid-uFviR8qL2F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFviR8qL2F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFviR8qL2F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFviR8qL2F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFviR8qL2F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFviR8qL2F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFviR8qL2F .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFviR8qL2F .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFviR8qL2F .navbar.opened {
  transition: all 0.3s;
}
.cid-uFviR8qL2F .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFviR8qL2F .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFviR8qL2F .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFviR8qL2F .navbar.collapsed {
  justify-content: center;
}
.cid-uFviR8qL2F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFviR8qL2F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFviR8qL2F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFviR8qL2F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFviR8qL2F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFviR8qL2F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFviR8qL2F .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFviR8qL2F .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFviR8qL2F .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFviR8qL2F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFviR8qL2F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFviR8qL2F .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFviR8qL2F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFviR8qL2F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFviR8qL2F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFviR8qL2F .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFviR8qL2F .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFviR8qL2F .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFviR8qL2F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFviR8qL2F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFviR8qL2F .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFviR8qL2F .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFviR8qL2F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFviR8qL2F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFviR8qL2F .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-uFviR8qL2F .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFviR8qL2F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFviR8qL2F .dropdown-item.active,
.cid-uFviR8qL2F .dropdown-item:active {
  background-color: transparent;
}
.cid-uFviR8qL2F .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFviR8qL2F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFviR8qL2F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFviR8qL2F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFviR8qL2F ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFviR8qL2F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFviR8qL2F button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFviR8qL2F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFviR8qL2F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFviR8qL2F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviR8qL2F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFviR8qL2F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFviR8qL2F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviR8qL2F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFviR8qL2F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFviR8qL2F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFviR8qL2F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFviR8qL2F .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFviR8qL2F .navbar {
    height: 70px;
  }
  .cid-uFviR8qL2F .navbar.opened {
    height: auto;
  }
  .cid-uFviR8qL2F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFviR8qL2F .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFviR8qL2F .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFviR8qL2F .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFviR8qL2F .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFviR8qL2F .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFviR8qL2F .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFviR8qL2F .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFviR8qL2F .text_widget {
  margin-bottom: 32px;
}
.cid-uFviR8qL2F .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFviR8qL2F .text_widget a:hover,
.cid-uFviR8qL2F .text_widget a:focus {
  opacity: .8;
}
.cid-uFviR8qL2F .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFviR8qL2F .navbar-caption {
  color: #ffffff;
}
.cid-uFviR8qL2F .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFviR8qL2F .mbr-section-subtitle,
.cid-uFviR8qL2F .text_widget,
.cid-uFviR8qL2F .mbr-section-btn {
  text-align: center;
}
.cid-uFviR8qL2F a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFviR9hIJm {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFviR9hIJm .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFviR9hIJm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviR9hIJm .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFviR9hIJm .line {
    margin-bottom: 10rem;
  }
}
.cid-uFviR9hIJm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviR9hIJm p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFviR9hIJm {
    align-items: center;
  }
  .cid-uFviR9hIJm .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFviR9hIJm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFviR9hIJm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFviR9hIJm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFviR9hIJm .content-wrap {
    width: 100%;
  }
}
.cid-uFviR9hIJm .mbr-section-subtitle,
.cid-uFviR9hIJm .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFviR9hIJm .mbr-text,
.cid-uFviR9hIJm .mbr-section-btn {
  text-align: left;
}
.cid-uFviR9hIJm .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcrjO9IW {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcrjO9IW .mbr-text {
  color: #221b35;
}
.cid-uFwcrjO9IW .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcrjO9IW h5,
.cid-uFwcrjO9IW h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcrjO9IW h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcrjO9IW h6 {
  line-height: 1.3 !important;
}
.cid-uFwcrjO9IW h6 span {
  padding-right: 2rem;
}
.cid-uFwcrjO9IW .mbr-section-title,
.cid-uFwcrjO9IW .align {
  color: #ffffff;
}
.cid-uFwcrjO9IW .mbr-section-subtitle,
.cid-uFwcrjO9IW .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwcs59yAY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwcs59yAY .mbr-section-head {
  width: 100%;
}
.cid-uFwcs59yAY .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviRe6pF7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFviRe6pF7 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFviRe6pF7 .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFviRe6pF7 .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFviRe6pF7 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFviRe6pF7 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFviRe6pF7 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFviRe6pF7 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFviRe6pF7 .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFviRe6pF7 .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFviRe6pF7 .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFviRe6pF7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFviRe6pF7 .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFviRe6pF7 .row {
    flex-direction: column-reverse;
  }
  .cid-uFviRe6pF7 .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFviRe6pF7 .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFviRe6pF7 .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFviRe6pF7 .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFviRe6pF7 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviRe6pF7 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFviRe6pF7 .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFviRe6pF7 .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFviRe6pF7 .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFviRe6pF7 .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFviRe6pF7 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFviRe6pF7 .card:hover .square_fill {
    transform: none;
  }
  .cid-uFviRe6pF7 .card .square_null {
    transform: translateX(0);
  }
  .cid-uFviRe6pF7 .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFviRe6pF7 .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFviRe6pF7 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFviRe6pF7 .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFviRe6pF7 .card-title {
  color: #232323;
}
.cid-uFviRe6pF7 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFviRe6pF7 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFviRe6pF7 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFviRe6pF7 .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFviRe6pF7 H5 {
  color: #7d9e45;
}
.cid-uFB9NS0TU5 {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9NS0TU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9NS0TU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9NS0TU5 .text-container {
  width: 100%;
}
.cid-uFB9NS0TU5 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9NS0TU5 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9NS0TU5 .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9NS0TU5 .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFviRhn3uY {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFviRhn3uY .mbr-section-head {
  width: 100%;
}
.cid-uFviRhn3uY .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFviRhLnMM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFviRhLnMM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFviRhLnMM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFviRhLnMM .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFviRhLnMM .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFviRhLnMM .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFviRhLnMM .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFviRhLnMM .container {
    max-width: 100%;
  }
  .cid-uFviRhLnMM .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFviRhLnMM .item-wrap {
  width: 100%;
}
.cid-uFviRhLnMM .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFviRhLnMM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFviRhLnMM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFviRhLnMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviRhLnMM .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFviRhLnMM .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFviRhLnMM .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFviRhLnMM .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFviRhLnMM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFviRhLnMM .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFviRhLnMM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFviRhLnMM .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFviRhLnMM .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFviRhLnMM .col-links {
    padding-top: 20px;
  }
}
.cid-uFviRhLnMM .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFviRhLnMM .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFviRhLnMM .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFviRhLnMM .list {
    text-align: center !important;
  }
}
.cid-uFviRhLnMM .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFviRhLnMM .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFviRhLnMM .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFviRhLnMM .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFviRhLnMM .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFviRhLnMM .list a:hover:before {
  width: 100%;
}
.cid-uFviRhLnMM .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFviRhLnMM .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFviRhLnMM .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFviRhLnMM .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvkiaMNnG {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvkiaMNnG .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvkiaMNnG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvkiaMNnG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvkiaMNnG .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvkiaMNnG .menu_box .navbar.opened,
  .cid-uFvkiaMNnG .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvkiaMNnG nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvkiaMNnG .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvkiaMNnG .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvkiaMNnG .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvkiaMNnG .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvkiaMNnG .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvkiaMNnG .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvkiaMNnG .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvkiaMNnG .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvkiaMNnG .offcanvas-body .mbr-text,
  .cid-uFvkiaMNnG .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvkiaMNnG .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvkiaMNnG .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvkiaMNnG ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvkiaMNnG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkiaMNnG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvkiaMNnG .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvkiaMNnG li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvkiaMNnG .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvkiaMNnG .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvkiaMNnG .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvkiaMNnG .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvkiaMNnG .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvkiaMNnG .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvkiaMNnG .nav-item .nav-link:hover::before,
.cid-uFvkiaMNnG .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvkiaMNnG .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvkiaMNnG .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvkiaMNnG .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkiaMNnG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvkiaMNnG .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvkiaMNnG .offcanvas_box {
    display: none;
  }
}
.cid-uFvkiaMNnG .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvkiaMNnG .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvkiaMNnG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvkiaMNnG .container {
  display: flex;
  margin: auto;
}
.cid-uFvkiaMNnG .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvkiaMNnG .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvkiaMNnG .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvkiaMNnG .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvkiaMNnG .navbar-nav {
    margin: 0;
  }
}
.cid-uFvkiaMNnG .dropdown-menu,
.cid-uFvkiaMNnG .navbar.opened {
  background-color: false !important;
}
.cid-uFvkiaMNnG .nav-item:focus,
.cid-uFvkiaMNnG .nav-link:focus {
  outline: none;
}
.cid-uFvkiaMNnG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvkiaMNnG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvkiaMNnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvkiaMNnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvkiaMNnG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvkiaMNnG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvkiaMNnG .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvkiaMNnG .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvkiaMNnG .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvkiaMNnG .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvkiaMNnG .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvkiaMNnG .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvkiaMNnG .navbar.collapsed {
  justify-content: center;
}
.cid-uFvkiaMNnG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvkiaMNnG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvkiaMNnG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvkiaMNnG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvkiaMNnG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvkiaMNnG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvkiaMNnG .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvkiaMNnG .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvkiaMNnG .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvkiaMNnG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvkiaMNnG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvkiaMNnG .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvkiaMNnG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvkiaMNnG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvkiaMNnG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvkiaMNnG .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvkiaMNnG .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvkiaMNnG .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvkiaMNnG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvkiaMNnG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvkiaMNnG .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvkiaMNnG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvkiaMNnG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvkiaMNnG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvkiaMNnG .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-uFvkiaMNnG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvkiaMNnG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvkiaMNnG .dropdown-item.active,
.cid-uFvkiaMNnG .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvkiaMNnG .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvkiaMNnG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvkiaMNnG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvkiaMNnG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvkiaMNnG ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvkiaMNnG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvkiaMNnG button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvkiaMNnG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvkiaMNnG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvkiaMNnG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkiaMNnG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkiaMNnG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvkiaMNnG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkiaMNnG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvkiaMNnG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvkiaMNnG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkiaMNnG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvkiaMNnG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvkiaMNnG .navbar {
    height: 70px;
  }
  .cid-uFvkiaMNnG .navbar.opened {
    height: auto;
  }
  .cid-uFvkiaMNnG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvkiaMNnG .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvkiaMNnG .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvkiaMNnG .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvkiaMNnG .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvkiaMNnG .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvkiaMNnG .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvkiaMNnG .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvkiaMNnG .text_widget {
  margin-bottom: 32px;
}
.cid-uFvkiaMNnG .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvkiaMNnG .text_widget a:hover,
.cid-uFvkiaMNnG .text_widget a:focus {
  opacity: .8;
}
.cid-uFvkiaMNnG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvkiaMNnG .navbar-caption {
  color: #ffffff;
}
.cid-uFvkiaMNnG .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvkiaMNnG .mbr-section-subtitle,
.cid-uFvkiaMNnG .text_widget,
.cid-uFvkiaMNnG .mbr-section-btn {
  text-align: center;
}
.cid-uFvkiaMNnG a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvkibqkfs {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvkibqkfs .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvkibqkfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkibqkfs .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvkibqkfs .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvkibqkfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkibqkfs p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvkibqkfs {
    align-items: center;
  }
  .cid-uFvkibqkfs .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvkibqkfs .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvkibqkfs {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvkibqkfs .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvkibqkfs .content-wrap {
    width: 100%;
  }
}
.cid-uFvkibqkfs .mbr-section-subtitle,
.cid-uFvkibqkfs .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvkibqkfs .mbr-text,
.cid-uFvkibqkfs .mbr-section-btn {
  text-align: left;
}
.cid-uFvkibqkfs .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcEITX9A {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcEITX9A .mbr-text {
  color: #221b35;
}
.cid-uFwcEITX9A .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcEITX9A h5,
.cid-uFwcEITX9A h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcEITX9A h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcEITX9A h6 {
  line-height: 1.3 !important;
}
.cid-uFwcEITX9A h6 span {
  padding-right: 2rem;
}
.cid-uFwcEITX9A .mbr-section-title,
.cid-uFwcEITX9A .align {
  color: #ffffff;
}
.cid-uFwcEITX9A .mbr-section-subtitle,
.cid-uFwcEITX9A .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwcFzpba7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwcFzpba7 .mbr-section-head {
  width: 100%;
}
.cid-uFwcFzpba7 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkid0Ln7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkid0Ln7 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvkid0Ln7 .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFvkid0Ln7 .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFvkid0Ln7 .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFvkid0Ln7 .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvkid0Ln7 .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvkid0Ln7 .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvkid0Ln7 .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvkid0Ln7 .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvkid0Ln7 .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvkid0Ln7 .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvkid0Ln7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvkid0Ln7 .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkid0Ln7 .row {
    flex-direction: column-reverse;
  }
  .cid-uFvkid0Ln7 .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvkid0Ln7 .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkid0Ln7 .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvkid0Ln7 .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkid0Ln7 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkid0Ln7 .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFvkid0Ln7 .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvkid0Ln7 .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFvkid0Ln7 .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFvkid0Ln7 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFvkid0Ln7 .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvkid0Ln7 .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkid0Ln7 .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvkid0Ln7 .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFvkid0Ln7 .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFvkid0Ln7 .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFvkid0Ln7 .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvkid0Ln7 .card-title {
  color: #ffffff;
}
.cid-uFvkid0Ln7 .mbr-text,
.cid-uFvkid0Ln7 .linkBtn {
  color: #ffffff;
}
.cid-uFvkid0Ln7 H5 {
  color: #7d9e45;
}
.cid-uFvkid0Ln7 .display-7 {
  color: #ffffff;
}
.cid-uFvkid0Ln7 .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvkid0Ln7 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvkid0Ln7 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvkid0Ln7 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvkid0Ln7 .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFB9VMMYrB {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFB9VMMYrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9VMMYrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9VMMYrB .text-container {
  width: 100%;
}
.cid-uFB9VMMYrB .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9VMMYrB .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9VMMYrB .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFvkig2PFB {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvkig2PFB .mbr-section-head {
  width: 100%;
}
.cid-uFvkig2PFB .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkigi7QJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkigi7QJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkigi7QJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkigi7QJ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvkigi7QJ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkigi7QJ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvkigi7QJ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvkigi7QJ .container {
    max-width: 100%;
  }
  .cid-uFvkigi7QJ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvkigi7QJ .item-wrap {
  width: 100%;
}
.cid-uFvkigi7QJ .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkigi7QJ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvkigi7QJ .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvkigi7QJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvkigi7QJ .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvkigi7QJ .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvkigi7QJ .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvkigi7QJ .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvkigi7QJ .col-links {
    padding-top: 20px;
  }
}
.cid-uFvkigi7QJ .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvkigi7QJ .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvkigi7QJ .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvkigi7QJ .list {
    text-align: center !important;
  }
}
.cid-uFvkigi7QJ .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvkigi7QJ .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvkigi7QJ .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvkigi7QJ .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvkigi7QJ .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvkigi7QJ .list a:hover:before {
  width: 100%;
}
.cid-uFvkigi7QJ .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvkigi7QJ .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvkigi7QJ .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvkigi7QJ .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvkj1Wruh {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvkj1Wruh .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvkj1Wruh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvkj1Wruh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvkj1Wruh .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvkj1Wruh .menu_box .navbar.opened,
  .cid-uFvkj1Wruh .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvkj1Wruh nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvkj1Wruh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvkj1Wruh .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvkj1Wruh .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvkj1Wruh .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvkj1Wruh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvkj1Wruh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvkj1Wruh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvkj1Wruh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvkj1Wruh .offcanvas-body .mbr-text,
  .cid-uFvkj1Wruh .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvkj1Wruh .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvkj1Wruh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvkj1Wruh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvkj1Wruh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkj1Wruh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvkj1Wruh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvkj1Wruh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvkj1Wruh .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvkj1Wruh .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvkj1Wruh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvkj1Wruh .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvkj1Wruh .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvkj1Wruh .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvkj1Wruh .nav-item .nav-link:hover::before,
.cid-uFvkj1Wruh .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvkj1Wruh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvkj1Wruh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvkj1Wruh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkj1Wruh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvkj1Wruh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvkj1Wruh .offcanvas_box {
    display: none;
  }
}
.cid-uFvkj1Wruh .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvkj1Wruh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvkj1Wruh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvkj1Wruh .container {
  display: flex;
  margin: auto;
}
.cid-uFvkj1Wruh .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvkj1Wruh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvkj1Wruh .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvkj1Wruh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvkj1Wruh .navbar-nav {
    margin: 0;
  }
}
.cid-uFvkj1Wruh .dropdown-menu,
.cid-uFvkj1Wruh .navbar.opened {
  background-color: false !important;
}
.cid-uFvkj1Wruh .nav-item:focus,
.cid-uFvkj1Wruh .nav-link:focus {
  outline: none;
}
.cid-uFvkj1Wruh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvkj1Wruh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvkj1Wruh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvkj1Wruh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvkj1Wruh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvkj1Wruh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvkj1Wruh .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvkj1Wruh .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvkj1Wruh .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvkj1Wruh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvkj1Wruh .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvkj1Wruh .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvkj1Wruh .navbar.collapsed {
  justify-content: center;
}
.cid-uFvkj1Wruh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvkj1Wruh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvkj1Wruh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvkj1Wruh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvkj1Wruh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvkj1Wruh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvkj1Wruh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvkj1Wruh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvkj1Wruh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvkj1Wruh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvkj1Wruh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvkj1Wruh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvkj1Wruh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvkj1Wruh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvkj1Wruh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvkj1Wruh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvkj1Wruh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvkj1Wruh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvkj1Wruh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvkj1Wruh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvkj1Wruh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvkj1Wruh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvkj1Wruh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvkj1Wruh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvkj1Wruh .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-uFvkj1Wruh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvkj1Wruh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvkj1Wruh .dropdown-item.active,
.cid-uFvkj1Wruh .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvkj1Wruh .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvkj1Wruh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvkj1Wruh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvkj1Wruh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvkj1Wruh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvkj1Wruh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvkj1Wruh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvkj1Wruh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvkj1Wruh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvkj1Wruh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkj1Wruh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkj1Wruh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvkj1Wruh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkj1Wruh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvkj1Wruh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvkj1Wruh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkj1Wruh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvkj1Wruh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvkj1Wruh .navbar {
    height: 70px;
  }
  .cid-uFvkj1Wruh .navbar.opened {
    height: auto;
  }
  .cid-uFvkj1Wruh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvkj1Wruh .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvkj1Wruh .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvkj1Wruh .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvkj1Wruh .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvkj1Wruh .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvkj1Wruh .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvkj1Wruh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvkj1Wruh .text_widget {
  margin-bottom: 32px;
}
.cid-uFvkj1Wruh .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvkj1Wruh .text_widget a:hover,
.cid-uFvkj1Wruh .text_widget a:focus {
  opacity: .8;
}
.cid-uFvkj1Wruh .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvkj1Wruh .navbar-caption {
  color: #ffffff;
}
.cid-uFvkj1Wruh .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvkj1Wruh .mbr-section-subtitle,
.cid-uFvkj1Wruh .text_widget,
.cid-uFvkj1Wruh .mbr-section-btn {
  text-align: center;
}
.cid-uFvkj1Wruh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvkj2l6tr {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvkj2l6tr .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvkj2l6tr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkj2l6tr .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvkj2l6tr .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvkj2l6tr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkj2l6tr p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvkj2l6tr {
    align-items: center;
  }
  .cid-uFvkj2l6tr .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvkj2l6tr .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvkj2l6tr {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvkj2l6tr .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvkj2l6tr .content-wrap {
    width: 100%;
  }
}
.cid-uFvkj2l6tr .mbr-section-subtitle,
.cid-uFvkj2l6tr .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvkj2l6tr .mbr-text,
.cid-uFvkj2l6tr .mbr-section-btn {
  text-align: left;
}
.cid-uFvkj2l6tr .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcyvYju0 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcyvYju0 .mbr-text {
  color: #221b35;
}
.cid-uFwcyvYju0 .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcyvYju0 h5,
.cid-uFwcyvYju0 h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcyvYju0 h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcyvYju0 h6 {
  line-height: 1.3 !important;
}
.cid-uFwcyvYju0 h6 span {
  padding-right: 2rem;
}
.cid-uFwcyvYju0 .mbr-section-title,
.cid-uFwcyvYju0 .align {
  color: #ffffff;
}
.cid-uFwcyvYju0 .mbr-section-subtitle,
.cid-uFwcyvYju0 .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwczcGcLS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwczcGcLS .mbr-section-head {
  width: 100%;
}
.cid-uFwczcGcLS .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkj2QKKf {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFvkj2QKKf .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvkj2QKKf .card:hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uFvkj2QKKf .card .square_fill {
  background-color: #7d9e45;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uFvkj2QKKf .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvkj2QKKf .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvkj2QKKf .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvkj2QKKf .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvkj2QKKf .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvkj2QKKf .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvkj2QKKf .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvkj2QKKf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvkj2QKKf .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkj2QKKf .row {
    flex-direction: column-reverse;
  }
  .cid-uFvkj2QKKf .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvkj2QKKf .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkj2QKKf .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvkj2QKKf .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkj2QKKf .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkj2QKKf .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvkj2QKKf .card .square_fill {
    transform: scale(0.8) translateX(-3.75rem);
  }
  .cid-uFvkj2QKKf .card .square_null {
    transform: translateX(1rem);
  }
  .cid-uFvkj2QKKf .card:hover .square_fill {
    transform: scale(1) translateX(-3rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uFvkj2QKKf .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvkj2QKKf .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkj2QKKf .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvkj2QKKf .card .square_null {
    transform: translateX(0);
  }
  .cid-uFvkj2QKKf .card .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uFvkj2QKKf .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFvkj2QKKf .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvkj2QKKf .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvkj2QKKf .card-title {
  color: #232323;
}
.cid-uFvkj2QKKf .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvkj2QKKf .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvkj2QKKf .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvkj2QKKf .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFvkj2QKKf H5 {
  color: #7d9e45;
}
.cid-uFB9RwTugg {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9RwTugg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9RwTugg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9RwTugg .text-container {
  width: 100%;
}
.cid-uFB9RwTugg .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9RwTugg .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9RwTugg .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9RwTugg .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFvkj5qakn {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvkj5qakn .mbr-section-head {
  width: 100%;
}
.cid-uFvkj5qakn .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkj5JHcJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkj5JHcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkj5JHcJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkj5JHcJ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvkj5JHcJ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkj5JHcJ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvkj5JHcJ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvkj5JHcJ .container {
    max-width: 100%;
  }
  .cid-uFvkj5JHcJ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvkj5JHcJ .item-wrap {
  width: 100%;
}
.cid-uFvkj5JHcJ .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkj5JHcJ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvkj5JHcJ .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvkj5JHcJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvkj5JHcJ .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvkj5JHcJ .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvkj5JHcJ .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvkj5JHcJ .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvkj5JHcJ .col-links {
    padding-top: 20px;
  }
}
.cid-uFvkj5JHcJ .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvkj5JHcJ .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvkj5JHcJ .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvkj5JHcJ .list {
    text-align: center !important;
  }
}
.cid-uFvkj5JHcJ .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvkj5JHcJ .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvkj5JHcJ .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvkj5JHcJ .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvkj5JHcJ .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvkj5JHcJ .list a:hover:before {
  width: 100%;
}
.cid-uFvkj5JHcJ .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvkj5JHcJ .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvkj5JHcJ .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvkj5JHcJ .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvkhvrT74 {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvkhvrT74 .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvkhvrT74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvkhvrT74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvkhvrT74 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvkhvrT74 .menu_box .navbar.opened,
  .cid-uFvkhvrT74 .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvkhvrT74 nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvkhvrT74 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvkhvrT74 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvkhvrT74 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvkhvrT74 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvkhvrT74 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvkhvrT74 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvkhvrT74 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvkhvrT74 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvkhvrT74 .offcanvas-body .mbr-text,
  .cid-uFvkhvrT74 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvkhvrT74 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvkhvrT74 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvkhvrT74 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvkhvrT74 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkhvrT74 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvkhvrT74 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvkhvrT74 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvkhvrT74 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvkhvrT74 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvkhvrT74 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvkhvrT74 .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvkhvrT74 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvkhvrT74 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvkhvrT74 .nav-item .nav-link:hover::before,
.cid-uFvkhvrT74 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvkhvrT74 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvkhvrT74 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvkhvrT74 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkhvrT74 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvkhvrT74 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvkhvrT74 .offcanvas_box {
    display: none;
  }
}
.cid-uFvkhvrT74 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvkhvrT74 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvkhvrT74 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvkhvrT74 .container {
  display: flex;
  margin: auto;
}
.cid-uFvkhvrT74 .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvkhvrT74 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvkhvrT74 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvkhvrT74 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvkhvrT74 .navbar-nav {
    margin: 0;
  }
}
.cid-uFvkhvrT74 .dropdown-menu,
.cid-uFvkhvrT74 .navbar.opened {
  background-color: false !important;
}
.cid-uFvkhvrT74 .nav-item:focus,
.cid-uFvkhvrT74 .nav-link:focus {
  outline: none;
}
.cid-uFvkhvrT74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvkhvrT74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvkhvrT74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvkhvrT74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvkhvrT74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvkhvrT74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvkhvrT74 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvkhvrT74 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvkhvrT74 .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvkhvrT74 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvkhvrT74 .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvkhvrT74 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvkhvrT74 .navbar.collapsed {
  justify-content: center;
}
.cid-uFvkhvrT74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvkhvrT74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvkhvrT74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvkhvrT74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvkhvrT74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvkhvrT74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvkhvrT74 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvkhvrT74 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvkhvrT74 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvkhvrT74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvkhvrT74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvkhvrT74 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvkhvrT74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvkhvrT74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvkhvrT74 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvkhvrT74 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvkhvrT74 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvkhvrT74 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvkhvrT74 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvkhvrT74 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvkhvrT74 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvkhvrT74 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvkhvrT74 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvkhvrT74 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvkhvrT74 .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-uFvkhvrT74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvkhvrT74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvkhvrT74 .dropdown-item.active,
.cid-uFvkhvrT74 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvkhvrT74 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvkhvrT74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvkhvrT74 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvkhvrT74 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvkhvrT74 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvkhvrT74 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvkhvrT74 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvkhvrT74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvkhvrT74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvkhvrT74 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkhvrT74 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkhvrT74 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvkhvrT74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkhvrT74 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvkhvrT74 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvkhvrT74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkhvrT74 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvkhvrT74 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvkhvrT74 .navbar {
    height: 70px;
  }
  .cid-uFvkhvrT74 .navbar.opened {
    height: auto;
  }
  .cid-uFvkhvrT74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvkhvrT74 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvkhvrT74 .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvkhvrT74 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvkhvrT74 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvkhvrT74 .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvkhvrT74 .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvkhvrT74 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvkhvrT74 .text_widget {
  margin-bottom: 32px;
}
.cid-uFvkhvrT74 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvkhvrT74 .text_widget a:hover,
.cid-uFvkhvrT74 .text_widget a:focus {
  opacity: .8;
}
.cid-uFvkhvrT74 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvkhvrT74 .navbar-caption {
  color: #ffffff;
}
.cid-uFvkhvrT74 .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvkhvrT74 .mbr-section-subtitle,
.cid-uFvkhvrT74 .text_widget,
.cid-uFvkhvrT74 .mbr-section-btn {
  text-align: center;
}
.cid-uFvkhvrT74 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvkhvTVBJ {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvkhvTVBJ .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvkhvTVBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkhvTVBJ .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvkhvTVBJ .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvkhvTVBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkhvTVBJ p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvkhvTVBJ {
    align-items: center;
  }
  .cid-uFvkhvTVBJ .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvkhvTVBJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvkhvTVBJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvkhvTVBJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvkhvTVBJ .content-wrap {
    width: 100%;
  }
}
.cid-uFvkhvTVBJ .mbr-section-subtitle,
.cid-uFvkhvTVBJ .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvkhvTVBJ .mbr-text,
.cid-uFvkhvTVBJ .mbr-section-btn {
  text-align: left;
}
.cid-uFvkhvTVBJ .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcKoJoCA {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcKoJoCA .mbr-text {
  color: #221b35;
}
.cid-uFwcKoJoCA .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcKoJoCA h5,
.cid-uFwcKoJoCA h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcKoJoCA h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcKoJoCA h6 {
  line-height: 1.3 !important;
}
.cid-uFwcKoJoCA h6 span {
  padding-right: 2rem;
}
.cid-uFwcKoJoCA .mbr-section-title,
.cid-uFwcKoJoCA .align {
  color: #ffffff;
}
.cid-uFwcKoJoCA .mbr-section-subtitle,
.cid-uFwcKoJoCA .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwcLaFrfS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwcLaFrfS .mbr-section-head {
  width: 100%;
}
.cid-uFwcLaFrfS .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkhxkgFo {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFvkhxkgFo .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvkhxkgFo .card .square_null {
  transform: translateX(2rem);
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvkhxkgFo .card .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #7d9e45;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvkhxkgFo .card:hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-uFvkhxkgFo .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvkhxkgFo .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvkhxkgFo .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvkhxkgFo .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvkhxkgFo .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvkhxkgFo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvkhxkgFo .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkhxkgFo .row {
    flex-direction: column-reverse;
  }
  .cid-uFvkhxkgFo .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvkhxkgFo .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkhxkgFo .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvkhxkgFo .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkhxkgFo .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uFvkhxkgFo .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvkhxkgFo .square_animation .square_null {
    transform: translateX(1rem);
  }
  .cid-uFvkhxkgFo .square_animation .square_fill {
    transform: translate(-4rem, -2rem);
  }
}
@media (max-width: 767px) {
  .cid-uFvkhxkgFo .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvkhxkgFo .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkhxkgFo .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvkhxkgFo .card .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-uFvkhxkgFo .card .square_null {
    transform: translateX(1.5rem);
  }
  .cid-uFvkhxkgFo .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uFvkhxkgFo .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvkhxkgFo .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvkhxkgFo .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvkhxkgFo .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvkhxkgFo .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvkhxkgFo .list-item-text {
  color: #232323;
  width: fit-content;
}
.cid-uFvkhxkgFo .card-title {
  color: #232323;
}
.cid-uFvkhxkgFo H5 {
  color: #7d9e45;
}
.cid-uFB9ZPsEM6 {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uFB9ZPsEM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFB9ZPsEM6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFB9ZPsEM6 .text-container {
  width: 100%;
}
.cid-uFB9ZPsEM6 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFB9ZPsEM6 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFB9ZPsEM6 .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFB9ZPsEM6 .mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff !important;
  transform-style: preserve-3d;
}
.cid-uFvkhz0jIj {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvkhz0jIj .mbr-section-head {
  width: 100%;
}
.cid-uFvkhz0jIj .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkhzhOnT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkhzhOnT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkhzhOnT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkhzhOnT .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvkhzhOnT .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkhzhOnT .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvkhzhOnT .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvkhzhOnT .container {
    max-width: 100%;
  }
  .cid-uFvkhzhOnT .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvkhzhOnT .item-wrap {
  width: 100%;
}
.cid-uFvkhzhOnT .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkhzhOnT .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvkhzhOnT .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvkhzhOnT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvkhzhOnT .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvkhzhOnT .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvkhzhOnT .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvkhzhOnT .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvkhzhOnT .col-links {
    padding-top: 20px;
  }
}
.cid-uFvkhzhOnT .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvkhzhOnT .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvkhzhOnT .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvkhzhOnT .list {
    text-align: center !important;
  }
}
.cid-uFvkhzhOnT .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvkhzhOnT .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvkhzhOnT .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvkhzhOnT .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvkhzhOnT .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvkhzhOnT .list a:hover:before {
  width: 100%;
}
.cid-uFvkhzhOnT .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvkhzhOnT .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvkhzhOnT .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvkhzhOnT .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uFvkgLuLAz {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
}
.cid-uFvkgLuLAz .navbar-dropdown {
  background-color: #212428 !important;
  padding: 0;
}
.cid-uFvkgLuLAz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212428 !important;
  background: #212428;
}
.cid-uFvkgLuLAz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFvkgLuLAz .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uFvkgLuLAz .menu_box .navbar.opened,
  .cid-uFvkgLuLAz .menu_box .navbar-collapse {
    background-color: #212428 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uFvkgLuLAz nav.navbar {
  position: fixed;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-uFvkgLuLAz .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uFvkgLuLAz .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uFvkgLuLAz .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uFvkgLuLAz .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #34363a;
  }
  .cid-uFvkgLuLAz .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uFvkgLuLAz .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uFvkgLuLAz .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uFvkgLuLAz .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uFvkgLuLAz .offcanvas-body .mbr-text,
  .cid-uFvkgLuLAz .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uFvkgLuLAz .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uFvkgLuLAz .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uFvkgLuLAz ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uFvkgLuLAz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkgLuLAz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uFvkgLuLAz .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uFvkgLuLAz li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uFvkgLuLAz .lg_brand {
    margin: 0 1rem;
  }
  .cid-uFvkgLuLAz .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uFvkgLuLAz .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uFvkgLuLAz .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .nav-item {
    margin: 0 !important;
  }
}
.cid-uFvkgLuLAz .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uFvkgLuLAz .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #7d9e45;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFvkgLuLAz .nav-item .nav-link:hover::before,
.cid-uFvkgLuLAz .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uFvkgLuLAz .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFvkgLuLAz .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uFvkgLuLAz .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uFvkgLuLAz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uFvkgLuLAz .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uFvkgLuLAz .offcanvas_box {
    display: none;
  }
}
.cid-uFvkgLuLAz .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uFvkgLuLAz .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uFvkgLuLAz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uFvkgLuLAz .container {
  display: flex;
  margin: auto;
}
.cid-uFvkgLuLAz .iconfont-wrapper {
  color: #7d9e45;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uFvkgLuLAz .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uFvkgLuLAz .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uFvkgLuLAz .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uFvkgLuLAz .navbar-nav {
    margin: 0;
  }
}
.cid-uFvkgLuLAz .dropdown-menu,
.cid-uFvkgLuLAz .navbar.opened {
  background-color: false !important;
}
.cid-uFvkgLuLAz .nav-item:focus,
.cid-uFvkgLuLAz .nav-link:focus {
  outline: none;
}
.cid-uFvkgLuLAz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFvkgLuLAz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFvkgLuLAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFvkgLuLAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFvkgLuLAz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFvkgLuLAz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFvkgLuLAz .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uFvkgLuLAz .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uFvkgLuLAz .navbar.opened {
  transition: all 0.3s;
}
.cid-uFvkgLuLAz .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uFvkgLuLAz .navbar .navbar-logo img {
  max-width: 90px;
  min-height: 90px;
  object-fit: contain;
  border-radius: .3rem !important;
}
.cid-uFvkgLuLAz .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uFvkgLuLAz .navbar.collapsed {
  justify-content: center;
}
.cid-uFvkgLuLAz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFvkgLuLAz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFvkgLuLAz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFvkgLuLAz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFvkgLuLAz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFvkgLuLAz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uFvkgLuLAz .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uFvkgLuLAz .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uFvkgLuLAz .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uFvkgLuLAz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFvkgLuLAz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFvkgLuLAz .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uFvkgLuLAz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFvkgLuLAz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uFvkgLuLAz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFvkgLuLAz .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uFvkgLuLAz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uFvkgLuLAz .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uFvkgLuLAz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uFvkgLuLAz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFvkgLuLAz .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uFvkgLuLAz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFvkgLuLAz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFvkgLuLAz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFvkgLuLAz .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-uFvkgLuLAz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFvkgLuLAz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFvkgLuLAz .dropdown-item.active,
.cid-uFvkgLuLAz .dropdown-item:active {
  background-color: transparent;
}
.cid-uFvkgLuLAz .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uFvkgLuLAz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFvkgLuLAz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFvkgLuLAz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFvkgLuLAz ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uFvkgLuLAz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFvkgLuLAz button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212428;
  background: #7d9e45;
}
.cid-uFvkgLuLAz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFvkgLuLAz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFvkgLuLAz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkgLuLAz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFvkgLuLAz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFvkgLuLAz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkgLuLAz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFvkgLuLAz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFvkgLuLAz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFvkgLuLAz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uFvkgLuLAz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFvkgLuLAz .navbar {
    height: 70px;
  }
  .cid-uFvkgLuLAz .navbar.opened {
    height: auto;
  }
  .cid-uFvkgLuLAz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFvkgLuLAz .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uFvkgLuLAz .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.cid-uFvkgLuLAz .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uFvkgLuLAz .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uFvkgLuLAz .mbr-section-btn-main .btn {
  min-width: 140px;
}
.cid-uFvkgLuLAz .navbar-caption:hover {
  color: #7d9e45;
}
@media (min-width: 992px) {
  .cid-uFvkgLuLAz .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uFvkgLuLAz .text_widget {
  margin-bottom: 32px;
}
.cid-uFvkgLuLAz .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uFvkgLuLAz .text_widget a:hover,
.cid-uFvkgLuLAz .text_widget a:focus {
  opacity: .8;
}
.cid-uFvkgLuLAz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uFvkgLuLAz .navbar-caption {
  color: #ffffff;
}
.cid-uFvkgLuLAz .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-uFvkgLuLAz .mbr-section-subtitle,
.cid-uFvkgLuLAz .text_widget,
.cid-uFvkgLuLAz .mbr-section-btn {
  text-align: center;
}
.cid-uFvkgLuLAz a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uFvkgLXXMJ {
  display: flex;
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uFvkgLXXMJ .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uFvkgLXXMJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkgLXXMJ .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uFvkgLXXMJ .line {
    margin-bottom: 10rem;
  }
}
.cid-uFvkgLXXMJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkgLXXMJ p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uFvkgLXXMJ {
    align-items: center;
  }
  .cid-uFvkgLXXMJ .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFvkgLXXMJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFvkgLXXMJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFvkgLXXMJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFvkgLXXMJ .content-wrap {
    width: 100%;
  }
}
.cid-uFvkgLXXMJ .mbr-section-subtitle,
.cid-uFvkgLXXMJ .line {
  color: #7d9e45;
  text-align: left;
}
.cid-uFvkgLXXMJ .mbr-text,
.cid-uFvkgLXXMJ .mbr-section-btn {
  text-align: left;
}
.cid-uFvkgLXXMJ .mbr-section-title {
  color: #ffffff;
}
.cid-uFwcRhfWVF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFwcRhfWVF .mbr-text {
  color: #221b35;
}
.cid-uFwcRhfWVF .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uFwcRhfWVF h5,
.cid-uFwcRhfWVF h6 {
  background: #7d9e45;
  display: inline;
}
.cid-uFwcRhfWVF h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uFwcRhfWVF h6 {
  line-height: 1.3 !important;
}
.cid-uFwcRhfWVF h6 span {
  padding-right: 2rem;
}
.cid-uFwcRhfWVF .mbr-section-title,
.cid-uFwcRhfWVF .align {
  color: #ffffff;
}
.cid-uFwcRhfWVF .mbr-section-subtitle,
.cid-uFwcRhfWVF .align {
  color: #ffffff;
  text-align: left;
}
.cid-uFwcRQgwE1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFwcRQgwE1 .mbr-section-head {
  width: 100%;
}
.cid-uFwcRQgwE1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkgNP1ip {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkgNP1ip .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uFvkgNP1ip .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uFvkgNP1ip .card .square_fill {
  background-color: #7d9e45;
  transform: translate(-2.5rem, 0rem);
}
.cid-uFvkgNP1ip .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uFvkgNP1ip .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uFvkgNP1ip .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uFvkgNP1ip .square_animation .square_null {
  z-index: 1;
  border: 1px solid #7d9e45;
}
.cid-uFvkgNP1ip .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uFvkgNP1ip .main_title {
  margin-bottom: 2.5rem;
}
.cid-uFvkgNP1ip .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uFvkgNP1ip .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cid-uFvkgNP1ip .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uFvkgNP1ip .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uFvkgNP1ip .row {
    flex-direction: column-reverse;
  }
  .cid-uFvkgNP1ip .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uFvkgNP1ip .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkgNP1ip .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uFvkgNP1ip .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uFvkgNP1ip .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkgNP1ip .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uFvkgNP1ip .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uFvkgNP1ip .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uFvkgNP1ip .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uFvkgNP1ip .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uFvkgNP1ip .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uFvkgNP1ip .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uFvkgNP1ip .card:hover .square_fill {
    transform: none;
  }
  .cid-uFvkgNP1ip .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uFvkgNP1ip .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uFvkgNP1ip .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uFvkgNP1ip .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uFvkgNP1ip .card-title {
  color: #ffffff;
}
.cid-uFvkgNP1ip .mbr-text,
.cid-uFvkgNP1ip .linkBtn {
  color: #ffffff;
}
.cid-uFvkgNP1ip H5 {
  color: #7d9e45;
}
.cid-uFvkgNP1ip .display-7 {
  color: #ffffff;
}
.cid-uFvkgNP1ip .col-lg-4 {
  flex: 0 0 auto;
  align-self: flex-start !important;
}
.cid-uFvkgNP1ip .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 ;
}
.cid-uFvkgNP1ip .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
}
.cid-uFvkgNP1ip .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #7d9e45;
}
.cid-uFvkgNP1ip .list-item-text {
  color: #ffffff;
  width: fit-content;
}
.cid-uFBa2zY5At {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uFBa2zY5At .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFBa2zY5At .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFBa2zY5At .text-container {
  width: 100%;
}
.cid-uFBa2zY5At .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-uFBa2zY5At .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uFBa2zY5At .mbr-section-btn {
  margin-top: 0px;
  margin-left: 6rem;
  margin-right: 0rem;
  font-size: 0;
}
.cid-uFvkgP2qhk {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFvkgP2qhk .mbr-section-head {
  width: 100%;
}
.cid-uFvkgP2qhk .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
  opacity: 1;
}
.cid-uFvkgPl6bF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uFvkgPl6bF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFvkgPl6bF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFvkgPl6bF .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uFvkgPl6bF .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uFvkgPl6bF .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uFvkgPl6bF .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uFvkgPl6bF .container {
    max-width: 100%;
  }
  .cid-uFvkgPl6bF .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uFvkgPl6bF .item-wrap {
  width: 100%;
}
.cid-uFvkgPl6bF .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uFvkgPl6bF .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uFvkgPl6bF .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uFvkgPl6bF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 54px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFvkgPl6bF .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFvkgPl6bF .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uFvkgPl6bF .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFvkgPl6bF .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFvkgPl6bF .col-links {
    padding-top: 20px;
  }
}
.cid-uFvkgPl6bF .mbr-section-subtitle {
  color: #7d9e45;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uFvkgPl6bF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFvkgPl6bF .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #ffffff;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uFvkgPl6bF .list {
    text-align: center !important;
  }
}
.cid-uFvkgPl6bF .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uFvkgPl6bF .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uFvkgPl6bF .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uFvkgPl6bF .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7d9e45;
  transition: 0.4s all;
}
.cid-uFvkgPl6bF .list a:hover {
  color: #7d9e45 !important;
  line-height: inherit !important;
}
.cid-uFvkgPl6bF .list a:hover:before {
  width: 100%;
}
.cid-uFvkgPl6bF .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uFvkgPl6bF .col-copyright {
    padding-top: 40px;
  }
}
.cid-uFvkgPl6bF .border-item {
  width: 100%;
  height: 1px;
  background-color: #7d9e45;
}
.cid-uFvkgPl6bF .copyright {
  color: #ffffff;
  padding: 40px 0;
}
