body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8cb63c !important;
}
.bg-success {
  background-color: #8cb63c !important;
}
.bg-info {
  background-color: #b6c931 !important;
}
.bg-warning {
  background-color: #878787 !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #607c29 !important;
  border-color: #607c29 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #607c29 !important;
  border-color: #607c29 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #b6c931 !important;
  border-color: #b6c931 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7e8b22 !important;
  border-color: #7e8b22 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #7e8b22 !important;
  border-color: #7e8b22 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #607c29 !important;
  border-color: #607c29 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #607c29 !important;
  border-color: #607c29 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #878787 !important;
  border-color: #878787 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #516923 !important;
  color: #516923 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #6c771d !important;
  color: #6c771d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #b6c931 !important;
  border-color: #b6c931 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b6c931 !important;
  border-color: #b6c931 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #516923 !important;
  color: #516923 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8cb63c !important;
  border-color: #8cb63c !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #545454 !important;
  color: #545454 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #878787 !important;
  border-color: #878787 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #878787 !important;
  border-color: #878787 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #8cb63c !important;
}
.text-secondary {
  color: #232323 !important;
}
.text-success {
  color: #8cb63c !important;
}
.text-info {
  color: #b6c931 !important;
}
.text-warning {
  color: #878787 !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #516923 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #516923 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #6c771d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #545454 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b6c931;
}
.alert-warning {
  background-color: #878787;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8cb63c;
  border-color: #8cb63c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8cb63c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c4dc95;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c4dc95;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f0f4d2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c7c7c7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #8cb63c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form1 .input-group-btn a.btn {
  border-radius: 0 !important;
}
.form1 .input-group-btn button[type="submit"] {
  border-radius: 0 !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #8cb63c;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #8cb63c;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8cb63c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8cb63c;
  border-bottom-color: #8cb63c;
}
.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: #000000 !important;
  background-color: #8cb63c !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: #232323 !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%;
}
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='%238cb63c' %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;
}
.cid-uxpPnxs9xA .nav-item:focus,
.cid-uxpPnxs9xA .nav-link:focus {
  outline: none;
}
.cid-uxpPnxs9xA a.nav-link:focus {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uxpPnxs9xA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uxpPnxs9xA .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-uxpPnxs9xA .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uxpPnxs9xA .navbar.collapsed {
  flex-direction: row!important;
}
.cid-uxpPnxs9xA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uxpPnxs9xA .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uxpPnxs9xA .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uxpPnxs9xA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-uxpPnxs9xA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxpPnxs9xA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxpPnxs9xA .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uxpPnxs9xA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uxpPnxs9xA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-uxpPnxs9xA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uxpPnxs9xA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uxpPnxs9xA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uxpPnxs9xA .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uxpPnxs9xA .dropdown-item.active,
.cid-uxpPnxs9xA .dropdown-item:active {
  background-color: transparent;
}
.cid-uxpPnxs9xA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uxpPnxs9xA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxpPnxs9xA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uxpPnxs9xA .navbar-buttons {
  text-align: center;
}
.cid-uxpPnxs9xA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b6c931;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uxpPnxs9xA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uxpPnxs9xA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxpPnxs9xA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uxpPnxs9xA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-uxpPnxs9xA .nav-link:hover,
.cid-uxpPnxs9xA .icons-menu .mbr-iconfont:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .dropdown-item:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .nav-item .nav-link::before {
  position: absolute;
  font-size: 14px !important;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #8cb63c;
  transition: width 0.3s ease-in;
}
.cid-uxpPnxs9xA .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-uxpPnxs9xA .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar-expand-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cid-uxpPnxs9xA .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uxpPnxs9xA .dropdown-menu {
    top: 100%;
  }
  .cid-uxpPnxs9xA .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uxpPnxs9xA .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uxpPnxs9xA .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uxpPnxs9xA .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uxphLqi6At {
  z-index: 1;
  background-image: url("../../../assets/images/hans-jurgenundsonjarainergbr-026-1920w.webp");
}
.cid-uxphLqi6At .mbr-arrow {
  background: #8cb63c !important;
  opacity: 0.7;
}
.cid-uxphLqi6At .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uxphLqi6At .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uxphLqi6At .input-wrap {
  background: #fcfcfc;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .btn .btn-lg .btn-success {
  font-weight: 200 !important;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  font-weight: 100 !important;
  line-height: 18px;
  margin: 0;
}
.cid-uxphLqi6At .datepicker {
  background-color: #ffffff;
  color: #8cb63c;
}
.cid-uxphLqi6At .datepicker .active.day {
  background-color: #8cb63c !important;
  color: #ffffff !important;
}
.cid-uxphLqi6At .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uxphLqi6At .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-uxphLqi6At .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-uxphLqi6At .check-in-input,
.cid-uxphLqi6At .check-out-input,
.cid-uxphLqi6At .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-uxphLqi6At .booking-datepicker input:not(.guests-input):not([name='email']) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-uxphLqi6At .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-uxphLqi6At .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-uxphLqi6At .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uxphLqi6At .datepicker {
    left: 10% !important;
  }
}
.cid-uxphLqi6At .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxphLqi6At .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvSD7Er6u {
  background-color: #333333;
}
.cid-uxvSD7Er6u .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uxvSD7Er6u .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uxvSD7Er6u .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uxvSD7Er6u .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uxvSD7Er6u .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-uxvSD7Er6u .image-element {
    padding-right: 0;
  }
}
.cid-uxvSD7Er6u .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-uxvSD7Er6u .mbr-text {
  color: #878787;
  line-height: 28px;
}
.cid-uxvSD7Er6u .brown {
  color: #c19b76;
}
.cid-uxvSD7Er6u .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uxvSD7Er6u .paragraphs-wrapper .first-paragraph,
.cid-uxvSD7Er6u .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uxvSD7Er6u .image-element {
    padding-bottom: 1rem;
  }
  .cid-uxvSD7Er6u .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uxvSD7Er6u .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uxvSD7Er6u .paragraphs-wrapper .first-paragraph,
  .cid-uxvSD7Er6u .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-uxvSD7Er6u .first-paragraph,
  .cid-uxvSD7Er6u .second-paragraph {
    width: 50%;
  }
  .cid-uxvSD7Er6u .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-uxvSD7Er6u .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-uxvSD7Er6u .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uxvSD7Er6u .mbr-section-title,
  .cid-uxvSD7Er6u .mbr-section-btn {
    text-align: left;
  }
}
.cid-uxvSD7Er6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvSD7Er6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvSD7Er6u .mbr-text,
.cid-uxvSD7Er6u .mbr-section-btn {
  color: #ffffff;
}
.cid-uxw33oQjsw {
  padding-top: 45px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-uxw33oQjsw .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uxw33oQjsw .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-uxw33oQjsw .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-uxw33oQjsw .mbr-role {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-uxw33oQjsw .image-wrap {
  overflow: hidden;
  min-height: 500px;
  border-radius: 0.8rem;
}
@media (max-width: 991px) {
  .cid-uxw33oQjsw .item {
    margin-bottom: 2rem;
  }
}
.cid-uxw33oQjsw .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.cid-uxw33oQjsw .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-uxw33oQjsw .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uxw33oQjsw .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 500px;
  object-fit: cover;
}
.cid-uxw33oQjsw .card-wrap .content-wrap {
  margin: auto;
}
.cid-uxw33oQjsw .content-wrap {
  height: 100%;
  width: 100%;
  padding-top: 1rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-uxw33oQjsw .icons-menu {
  display: flex;
}
.cid-uxw33oQjsw .iconfont-wrapper {
  font-size: 1.2rem;
  margin-right: 1rem;
  display: block;
  position: relative;
}
.cid-uxw33oQjsw .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #232323;
}
.cid-uxw33oQjsw .card-text,
.cid-uxw33oQjsw .mbr-section-btn,
.cid-uxw33oQjsw .social-row {
  color: #232323;
}
.cid-uxw33oQjsw .mbr-role,
.cid-uxw33oQjsw .social-row {
  color: #232323;
}
.cid-uxw33oQjsw .card-title,
.cid-uxw33oQjsw .social-row {
  color: #232323;
}
.cid-uxw33oQjsw .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uxw33oQjsw .mbr-section-subtitle {
  text-align: left;
}
.cid-uxvVRMFtTb {
  background-image: url("../../../assets/images/hans-jurgenundsonjarainergbr-025-1920w.webp");
}
.cid-uxvVRMFtTb .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uxvVRMFtTb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uxvVRMFtTb .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-uxvVRMFtTb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-uxvVRMFtTb .image-element {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uxvVRMFtTb .image-element {
    padding-right: 0;
  }
}
.cid-uxvVRMFtTb .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uxvVRMFtTb .mbr-section-subtitle,
.cid-uxvVRMFtTb .mbr-text {
  color: #878787;
}
.cid-uxvVRMFtTb .mbr-text {
  font-weight: 300 !important;
  line-height: 28px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uxvVRMFtTb .image-element {
    padding-top: 1rem;
  }
}
.cid-uxvVRMFtTb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvVRMFtTb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvVRMFtTb .mbr-text,
.cid-uxvVRMFtTb .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uxvVRMFtTb .mbr-section-title {
  text-align: left;
  color: #efefef;
}
.cid-uxvWQ9urLm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uxvWQ9urLm .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-uxvWQ9urLm .card .card-img img {
  transition: all 0.5s;
}
.cid-uxvWQ9urLm .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uxvWQ9urLm .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-uxvWQ9urLm .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uxvWQ9urLm .first-card {
  display: block;
}
.cid-uxvWQ9urLm .first-card .card-wrapper {
  height: 100%;
}
.cid-uxvWQ9urLm .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-uxvWQ9urLm .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uxvWQ9urLm .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-uxvWQ9urLm .first-card .info-wrapper .fist-card-text .mbr-text {
  color: black !important;
  font-weight: 500 !important;
}
.cid-uxvWQ9urLm .first-card .info-wrapper .info-text {
  display: inline-block;
  color: black !important;
  font-weight: 300 !important;
  padding-right: 1rem;
  margin: 0;
}
.cid-uxvWQ9urLm .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-uxvWQ9urLm .first-row,
.cid-uxvWQ9urLm .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-uxvWQ9urLm .first-row .card .card-wrapper,
.cid-uxvWQ9urLm .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-uxvWQ9urLm .first-row .card .card-wrapper .card-img,
.cid-uxvWQ9urLm .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-uxvWQ9urLm .first-row .card .card-wrapper .card-img img,
.cid-uxvWQ9urLm .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-uxvWQ9urLm .first-row,
  .cid-uxvWQ9urLm .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uxvWQ9urLm .first-row .card .card-wrapper .card-img,
  .cid-uxvWQ9urLm .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uxvWQ9urLm .first-row .card .card-wrapper .card-img img,
  .cid-uxvWQ9urLm .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-uxvWQ9urLm .first-row .caption,
.cid-uxvWQ9urLm .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-uxvWQ9urLm .first-row .caption .price,
.cid-uxvWQ9urLm .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-uxvWQ9urLm .first-row {
  padding-bottom: 1rem;
}
.cid-uxvWQ9urLm .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uxvWQ9urLm .first-card,
  .cid-uxvWQ9urLm .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uxvWQ9urLm .first-card {
    padding-bottom: 2rem;
  }
  .cid-uxvWQ9urLm .only-first-row {
    height: 100%;
  }
}
.cid-uxvWQ9urLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvWQ9urLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxvVfKYrhx {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxvVfKYrhx .card .card-img {
  padding-bottom: 1.5rem;
}
.cid-uxvVfKYrhx .card .card-img span {
  color: #878787;
  font-size: 45px;
}
.cid-uxvVfKYrhx .card .card-title {
  letter-spacing: 1px;
}
.cid-uxvVfKYrhx .card-title {
  margin: 0;
}
.cid-uxvVfKYrhx .mbr-text,
.cid-uxvVfKYrhx .card-title {
  font-weight: 300 !important;
  line-height: 26px !important;
  color: black !important;
}
.cid-uxvVfKYrhx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvVfKYrhx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxHcHmd4C6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxHcHmd4C6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxHcHmd4C6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uxHcHmd4C6 .container {
    padding: 0 16px;
  }
}
.cid-uxHcHmd4C6 .card {
  justify-content: center;
}
.cid-uxHcHmd4C6 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #8cb63c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uxHcHmd4C6 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxHcHmd4C6 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uxHcHmd4C6 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uxHcHmd4C6 .mbr-section-title {
  color: #000000;
}
.cid-uxHcHmd4C6 .mbr-text {
  color: #000000;
}
.cid-uxHcHmd4C6 .mbr-desc {
  color: #000000;
}
.cid-uxHcHmd4C6 .mbr-section-title,
.cid-uxHcHmd4C6 .title-wrapper {
  color: #ffffff;
}
.cid-uxwrbJUaJR {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxwrbJUaJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwrbJUaJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwrbJUaJR .content-wrap {
  gap: 20px;
  padding: 32px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .cid-uxwrbJUaJR .content-wrap {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .cid-uxwrbJUaJR .content-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uxwrbJUaJR .content-wrap {
    gap: 40px;
    padding: 12px;
    margin-bottom: 12px;
  }
}
.cid-uxwrbJUaJR .col-img {
  width: 49%;
}
@media (max-width: 1199px) {
  .cid-uxwrbJUaJR .col-img {
    width: 100%;
    order: 2;
  }
}
.cid-uxwrbJUaJR .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uxwrbJUaJR .image-wrapper {
    border-radius: 12px;
  }
}
.cid-uxwrbJUaJR .image-wrapper img {
  width: 100%;
  min-height: 534px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .cid-uxwrbJUaJR .image-wrapper img {
    min-height: 408px;
  }
}
@media (max-width: 1199px) {
  .cid-uxwrbJUaJR .image-wrapper img {
    width: 100%;
    min-height: auto;
    height: 350px;
  }
}
.cid-uxwrbJUaJR .col-text {
  display: flex;
  align-items: flex-start;
  width: 1%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-uxwrbJUaJR .col-text {
    width: 100%;
    order: 1;
  }
}
.cid-uxwrbJUaJR .card-title {
  color: #8cb63c;
}
.cid-uxwrbJUaJR .mbr-text {
  margin-top: 16px;
  color: black;
  font-weight: 300 !important;
  line-height: 30px !important;
}
@media (max-width: 767px) {
  .cid-uxwrbJUaJR .mbr-text {
    margin-top: 12px;
  }
}
.cid-uxwrbJUaJR .mbr-section-btn {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .cid-uxwrbJUaJR .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-uxG6MMZfkl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxG6MMZfkl .line {
  background-color: #8cb63c;
  color: #8cb63c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uxG6MMZfkl .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-uxG6MMZfkl .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-uxw4y2HBql {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uxw4y2HBql .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uxw4y2HBql .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uxw4y2HBql .form-group {
  margin-bottom: 1rem;
}
.cid-uxw4y2HBql .form-control {
  border: none !important;
  border-radius: 0;
  padding: 0.5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-uxw4y2HBql textarea.form-control {
  min-height: 96px;
}
.cid-uxw4y2HBql .input-group-btn {
  width: 100%;
}
.cid-uxw4y2HBql .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uxw4y2HBql .form-control-label {
  color: black;
  font-weight: 200 !important;
  font-size: 1rem;
}
.cid-uxw4y2HBql .google-map {
  width: 100%;
  height: 25rem;
  height: 100%;
}
.cid-uxw4y2HBql .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uxw4y2HBql .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-uxw4y2HBql .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding: 10px;
}
.cid-uxw4y2HBql .info-value {
  color: #b7b6b6;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-uxw4y2HBql .form-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uxw4y2HBql .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uxw4y2HBql .form-wrapper {
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uxw4y2HBql .form-subtitle {
    text-align: center;
  }
}
.cid-uxw4y2HBql .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxw4y2HBql .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxw4y2HBql .form-text {
  font-weight: 300 !important;
  color: black;
}
.cid-uxw4y2HBql LABEL {
  color: #000000;
}
.cid-uxG59cYbaQ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uxG59cYbaQ .line {
  background-color: #8cb63c;
  color: #8cb63c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uxG59cYbaQ .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-uxG59cYbaQ .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-uxwjP1lIJ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uxwjP1lIJ3 .first-column .mbr-text {
  margin: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uxwjP1lIJ3 .text-white {
  font-weight: 200 !important;
  font-size: 16px !important;
}
.cid-uxwjP1lIJ3 .form-group {
  max-width: 55%;
}
.cid-uxwjP1lIJ3 .form-group,
.cid-uxwjP1lIJ3 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uxwjP1lIJ3 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uxwjP1lIJ3 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column,
  .cid-uxwjP1lIJ3 .third-column {
    text-align: center;
  }
  .cid-uxwjP1lIJ3 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle,
.cid-uxwjP1lIJ3 .icons-wrapper {
  color: #ffffff;
}
.cid-uxpPnxs9xA .nav-item:focus,
.cid-uxpPnxs9xA .nav-link:focus {
  outline: none;
}
.cid-uxpPnxs9xA a.nav-link:focus {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uxpPnxs9xA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uxpPnxs9xA .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-uxpPnxs9xA .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uxpPnxs9xA .navbar.collapsed {
  flex-direction: row!important;
}
.cid-uxpPnxs9xA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uxpPnxs9xA .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uxpPnxs9xA .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uxpPnxs9xA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-uxpPnxs9xA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxpPnxs9xA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxpPnxs9xA .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uxpPnxs9xA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uxpPnxs9xA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-uxpPnxs9xA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uxpPnxs9xA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uxpPnxs9xA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uxpPnxs9xA .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uxpPnxs9xA .dropdown-item.active,
.cid-uxpPnxs9xA .dropdown-item:active {
  background-color: transparent;
}
.cid-uxpPnxs9xA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uxpPnxs9xA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxpPnxs9xA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uxpPnxs9xA .navbar-buttons {
  text-align: center;
}
.cid-uxpPnxs9xA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b6c931;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uxpPnxs9xA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uxpPnxs9xA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxpPnxs9xA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uxpPnxs9xA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-uxpPnxs9xA .nav-link:hover,
.cid-uxpPnxs9xA .icons-menu .mbr-iconfont:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .dropdown-item:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .nav-item .nav-link::before {
  position: absolute;
  font-size: 14px !important;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #8cb63c;
  transition: width 0.3s ease-in;
}
.cid-uxpPnxs9xA .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-uxpPnxs9xA .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar-expand-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cid-uxpPnxs9xA .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uxpPnxs9xA .dropdown-menu {
    top: 100%;
  }
  .cid-uxpPnxs9xA .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uxpPnxs9xA .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uxpPnxs9xA .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uxpPnxs9xA .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uxwdf8AvIk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uxwdf8AvIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwdf8AvIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwdf8AvIk .row {
  justify-content: space-between;
}
.cid-uxwdf8AvIk .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uxwdf8AvIk .content-wrapper {
    padding: 0;
  }
}
.cid-uxwdf8AvIk .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxwdf8AvIk .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uxwdf8AvIk .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxwdf8AvIk .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uxwdf8AvIk .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxwdf8AvIk .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uxwdf8AvIk .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uxwdf8AvIk .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwdf8AvIk .mbr-section-title {
  color: #000000;
}
.cid-uxwdf8AvIk .mbr-desc {
  color: #000000;
}
.cid-uxwdf8AvIk .mbr-text {
  color: #000000;
}
.cid-uxwjP1lIJ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uxwjP1lIJ3 .first-column .mbr-text {
  margin: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uxwjP1lIJ3 .text-white {
  font-weight: 200 !important;
  font-size: 16px !important;
}
.cid-uxwjP1lIJ3 .form-group {
  max-width: 55%;
}
.cid-uxwjP1lIJ3 .form-group,
.cid-uxwjP1lIJ3 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uxwjP1lIJ3 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uxwjP1lIJ3 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column,
  .cid-uxwjP1lIJ3 .third-column {
    text-align: center;
  }
  .cid-uxwjP1lIJ3 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle,
.cid-uxwjP1lIJ3 .icons-wrapper {
  color: #ffffff;
}
.cid-uxpPnxs9xA .nav-item:focus,
.cid-uxpPnxs9xA .nav-link:focus {
  outline: none;
}
.cid-uxpPnxs9xA a.nav-link:focus {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uxpPnxs9xA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uxpPnxs9xA .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-uxpPnxs9xA .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uxpPnxs9xA .navbar.collapsed {
  flex-direction: row!important;
}
.cid-uxpPnxs9xA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uxpPnxs9xA .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uxpPnxs9xA .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uxpPnxs9xA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-uxpPnxs9xA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxpPnxs9xA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxpPnxs9xA .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uxpPnxs9xA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uxpPnxs9xA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-uxpPnxs9xA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uxpPnxs9xA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uxpPnxs9xA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uxpPnxs9xA .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uxpPnxs9xA .dropdown-item.active,
.cid-uxpPnxs9xA .dropdown-item:active {
  background-color: transparent;
}
.cid-uxpPnxs9xA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uxpPnxs9xA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxpPnxs9xA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uxpPnxs9xA .navbar-buttons {
  text-align: center;
}
.cid-uxpPnxs9xA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b6c931;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uxpPnxs9xA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uxpPnxs9xA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxpPnxs9xA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uxpPnxs9xA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-uxpPnxs9xA .nav-link:hover,
.cid-uxpPnxs9xA .icons-menu .mbr-iconfont:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .dropdown-item:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .nav-item .nav-link::before {
  position: absolute;
  font-size: 14px !important;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #8cb63c;
  transition: width 0.3s ease-in;
}
.cid-uxpPnxs9xA .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-uxpPnxs9xA .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar-expand-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cid-uxpPnxs9xA .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uxpPnxs9xA .dropdown-menu {
    top: 100%;
  }
  .cid-uxpPnxs9xA .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uxpPnxs9xA .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uxpPnxs9xA .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uxpPnxs9xA .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uxwenLcDyy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff9dd;
}
.cid-uxwenLcDyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwenLcDyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwenLcDyy .row {
  justify-content: space-between;
}
.cid-uxwenLcDyy .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uxwenLcDyy .content-wrapper {
    padding: 0;
  }
}
.cid-uxwenLcDyy .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxwenLcDyy .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uxwenLcDyy .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxwenLcDyy .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uxwenLcDyy .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxwenLcDyy .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uxwenLcDyy .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uxwenLcDyy .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uxwenLcDyy .mbr-section-title {
  color: #000000;
}
.cid-uxwenLcDyy .mbr-desc {
  color: #000000;
}
.cid-uxwenLcDyy .mbr-text {
  color: #000000;
}
.cid-uxwjP1lIJ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uxwjP1lIJ3 .first-column .mbr-text {
  margin: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uxwjP1lIJ3 .text-white {
  font-weight: 200 !important;
  font-size: 16px !important;
}
.cid-uxwjP1lIJ3 .form-group {
  max-width: 55%;
}
.cid-uxwjP1lIJ3 .form-group,
.cid-uxwjP1lIJ3 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uxwjP1lIJ3 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uxwjP1lIJ3 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column,
  .cid-uxwjP1lIJ3 .third-column {
    text-align: center;
  }
  .cid-uxwjP1lIJ3 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle,
.cid-uxwjP1lIJ3 .icons-wrapper {
  color: #ffffff;
}
.cid-uxpPnxs9xA .nav-item:focus,
.cid-uxpPnxs9xA .nav-link:focus {
  outline: none;
}
.cid-uxpPnxs9xA a.nav-link:focus {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uxpPnxs9xA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uxpPnxs9xA .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-uxpPnxs9xA .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uxpPnxs9xA .navbar.collapsed {
  flex-direction: row!important;
}
.cid-uxpPnxs9xA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uxpPnxs9xA .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uxpPnxs9xA .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uxpPnxs9xA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxpPnxs9xA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-uxpPnxs9xA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxpPnxs9xA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxpPnxs9xA .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uxpPnxs9xA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uxpPnxs9xA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxpPnxs9xA .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-uxpPnxs9xA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uxpPnxs9xA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uxpPnxs9xA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uxpPnxs9xA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uxpPnxs9xA .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxpPnxs9xA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uxpPnxs9xA .dropdown-item.active,
.cid-uxpPnxs9xA .dropdown-item:active {
  background-color: transparent;
}
.cid-uxpPnxs9xA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxpPnxs9xA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uxpPnxs9xA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uxpPnxs9xA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxpPnxs9xA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uxpPnxs9xA .navbar-buttons {
  text-align: center;
}
.cid-uxpPnxs9xA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b6c931;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxpPnxs9xA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxpPnxs9xA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxpPnxs9xA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uxpPnxs9xA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uxpPnxs9xA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxpPnxs9xA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uxpPnxs9xA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-uxpPnxs9xA .nav-link:hover,
.cid-uxpPnxs9xA .icons-menu .mbr-iconfont:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .dropdown-item:hover {
  color: #8cb63c !important;
}
.cid-uxpPnxs9xA .nav-item .nav-link::before {
  position: absolute;
  font-size: 14px !important;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #8cb63c;
  transition: width 0.3s ease-in;
}
.cid-uxpPnxs9xA .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-uxpPnxs9xA .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uxpPnxs9xA .navbar-expand-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cid-uxpPnxs9xA .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uxpPnxs9xA .dropdown-menu {
    top: 100%;
  }
  .cid-uxpPnxs9xA .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uxpPnxs9xA .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uxpPnxs9xA .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uxpPnxs9xA .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uxGmD1bQIi {
  padding-top: 135px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uxGmD1bQIi .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uxGmD1bQIi .mbr-section-title,
.cid-uxGmD1bQIi .mbr-section-subtitle,
.cid-uxGmD1bQIi .underline {
  color: black !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxGmD1bQIi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uxGmD1bQIi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxGmD1bQIi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxGmD1bQIi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uxGmD1bQIi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #8cb63c);
}
.cid-uxGmD1bQIi .icon-focus {
  display: none;
}
.cid-uxGmD1bQIi .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uxGmD1bQIi ul {
  font-size: 0;
}
.cid-uxGmD1bQIi .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uxGmD1bQIi .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uxGmD1bQIi .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #8cb63c;
}
.cid-uxGmD1bQIi .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uxGmD1bQIi .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uxGmD1bQIi .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uxGmD1bQIi .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uxGmD1bQIi .btn:hover {
  background: transparent !important;
}
.cid-uxGmD1bQIi .btn:hover:before {
  background: transparent !important;
}
.cid-uxGmD1bQIi .btn:before {
  background-color: transparent !important;
}
.cid-uxGmD1bQIi .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uxwjP1lIJ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uxwjP1lIJ3 .first-column .mbr-text {
  margin: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uxwjP1lIJ3 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uxwjP1lIJ3 .text-white {
  font-weight: 200 !important;
  font-size: 16px !important;
}
.cid-uxwjP1lIJ3 .form-group {
  max-width: 55%;
}
.cid-uxwjP1lIJ3 .form-group,
.cid-uxwjP1lIJ3 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uxwjP1lIJ3 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uxwjP1lIJ3 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uxwjP1lIJ3 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uxwjP1lIJ3 .first-column,
  .cid-uxwjP1lIJ3 .second-column,
  .cid-uxwjP1lIJ3 .third-column {
    text-align: center;
  }
  .cid-uxwjP1lIJ3 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uxwjP1lIJ3 .mbr-section-subtitle,
.cid-uxwjP1lIJ3 .icons-wrapper {
  color: #ffffff;
}
