body {
  font-family: Spline Sans Mono;
}
.display-1 {
  font-family: 'Rokkitt', serif;
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  word-spacing: -0.15em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Rokkitt', serif;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  word-spacing: -0.15em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rokkitt', serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  word-spacing: -0.15em;
}
.display-4 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-5 {
  font-family: 'Rokkitt', serif;
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.05em;
  word-spacing: -0.15em;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Rokkitt', serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  word-spacing: -0.15em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((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.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-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ec101b !important;
}
.bg-success {
  background-color: #44cf35 !important;
}
.bg-info {
  background-color: #563cae !important;
}
.bg-warning {
  background-color: #b29403 !important;
}
.bg-danger {
  background-color: #b30710 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ec101b !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #090f10 !important;
  background-color: #f8747b !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #090f10 !important;
  background-color: #f8747b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0597ff !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #090f10 !important;
  background-color: #75c6ff !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #090f10 !important;
  background-color: #75c6ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #563cae !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #090f10 !important;
  background-color: #9683d7 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #090f10 !important;
  background-color: #9683d7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #44cf35 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #090f10 !important;
  background-color: #96e78e !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #090f10 !important;
  background-color: #96e78e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b29403 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #090f10 !important;
  background-color: #ffda27 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #090f10 !important;
  background-color: #ffda27 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b30710 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #090f10 !important;
  background-color: #fa303b !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #090f10 !important;
  background-color: #fa303b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #090f10 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #090f10 !important;
  background-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #090f10 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #090f10 !important;
  background-color: #2f545a !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #090f10 !important;
  background-color: #2f545a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec101b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9b0a12 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ec101b !important;
  border-color: #ec101b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0597ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0065ad !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0597ff !important;
  border-color: #0597ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #563cae;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #36266e !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #563cae !important;
  border-color: #563cae !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #44cf35;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2c8c21 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #44cf35 !important;
  border-color: #44cf35 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b29403;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5d4d02 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b29403 !important;
  border-color: #b29403 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b30710;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #600409 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b30710 !important;
  border-color: #b30710 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #090f10;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #090f10 !important;
  border-color: #090f10 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ec101b !important;
}
.text-secondary {
  color: #0597ff !important;
}
.text-success {
  color: #44cf35 !important;
}
.text-info {
  color: #563cae !important;
}
.text-warning {
  color: #b29403 !important;
}
.text-danger {
  color: #b30710 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #090f10 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8c0a10 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #005c9e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #28801e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #312262 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e4101 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #510307 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ec101b;
}
.nav-tabs .nav-link:not(.active) {
  color: #090f10;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #563cae;
}
.alert-warning {
  background-color: #b29403;
}
.alert-danger {
  background-color: #b30710;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ec101b;
  border-color: #ec101b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ec101b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fccccf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ddf6da;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a191d9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fcda39;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8424b;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rokkitt', serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  word-spacing: -0.15em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.5rem;
}
.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: #ec101b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rokkitt', serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  word-spacing: -0.15em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.5rem;
}
blockquote {
  border-color: #ec101b;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ec101b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ec101b;
}
.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: #ec101b;
  border-bottom-color: #ec101b;
}
.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: #ec101b !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: #0597ff !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='%23ec101b' %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.4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}
.container-fluid {
  max-width: 100%;
  width: 100%;
  padding: 0 5vw;
}
.row {
  margin-left: -2rem;
  margin-right: -2rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border-radius: 0 !important;
  border: none;
  font-weight: 500;
  transition: .3s all !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: .15s all !important;
  transform: rotate(-45deg);
  transform-style: preserve-3d;
}
.mbr-section-btn .btn:hover {
  transform: translate(0, -8px);
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.mbr-section-btn .btn-black {
  color: #fff !important;
}
.mbr-section-btn .btn-black:hover {
  color: #fff !important;
}
.section-border-item {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
}
.section-border-item_top {
  top: 0;
}
.section-border-item_bottom {
  bottom: 0;
}
.section-border-item_center {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
}
.text-transform-container {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
}
.text-transform-container .text-transform-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: btn-move-out 0.3s ease-in-out;
}
.text-transform-container .mbr-text {
  transition: .3s all;
}
.text-transform-container .iconfont-wrapper .mbr-iconfont {
  transition: .3s all;
  padding-right: 8px;
}
.text-transform-container:hover .text-transform-wrap {
  animation: btn-move 0.3s ease-in-out;
}
.text-transform-container:hover .iconfont-wrapper .mbr-iconfont {
  padding-right: 0;
  padding-left: 8px;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-tmYQJSEkuS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-tmYQJSEkuS nav.navbar {
  position: fixed;
}
.cid-tmYQJSEkuS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmYQJSEkuS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmYQJSEkuS .dropdown-item:hover,
.cid-tmYQJSEkuS .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-tmYQJSEkuS .dropdown-item:hover span {
  color: white;
}
.cid-tmYQJSEkuS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmYQJSEkuS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmYQJSEkuS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmYQJSEkuS .nav-link {
  position: relative;
}
.cid-tmYQJSEkuS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmYQJSEkuS .container {
    flex-wrap: nowrap;
  }
}
.cid-tmYQJSEkuS .dropdown-menu,
.cid-tmYQJSEkuS .navbar.opened {
  background: #c1f3bb !important;
}
.cid-tmYQJSEkuS .nav-item:focus,
.cid-tmYQJSEkuS .nav-link:focus {
  outline: none;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmYQJSEkuS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmYQJSEkuS .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-tmYQJSEkuS .navbar.opened {
  transition: all 0.3s;
}
.cid-tmYQJSEkuS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmYQJSEkuS .navbar .navbar-logo img {
  width: auto;
}
.cid-tmYQJSEkuS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmYQJSEkuS .navbar.collapsed {
  justify-content: center;
}
.cid-tmYQJSEkuS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmYQJSEkuS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmYQJSEkuS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmYQJSEkuS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tmYQJSEkuS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmYQJSEkuS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmYQJSEkuS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmYQJSEkuS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmYQJSEkuS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tmYQJSEkuS .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tmYQJSEkuS .navbar.navbar-short {
  min-height: auto;
}
.cid-tmYQJSEkuS .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-tmYQJSEkuS .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-tmYQJSEkuS .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-tmYQJSEkuS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-tmYQJSEkuS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmYQJSEkuS .dropdown-item.active,
.cid-tmYQJSEkuS .dropdown-item:active {
  background-color: transparent;
}
.cid-tmYQJSEkuS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmYQJSEkuS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-tmYQJSEkuS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmYQJSEkuS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmYQJSEkuS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmYQJSEkuS .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-tmYQJSEkuS .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-tmYQJSEkuS .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tmYQJSEkuS .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-tmYQJSEkuS .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-tmYQJSEkuS button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmYQJSEkuS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmYQJSEkuS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmYQJSEkuS .navbar {
    height: 70px;
  }
  .cid-tmYQJSEkuS .navbar.opened {
    height: auto;
  }
  .cid-tmYQJSEkuS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmYQJSEkuS .container-fluid {
  padding-right: 0;
}
.cid-tmYQJSEkuS .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-tmYQJSEkuS .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-tmYQJSEkuS .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-tmYQJSEkuS .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-tmYQJSEkuS .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-tmYQJSEkuS .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-tmYQJSEkuS .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-tmYQJSEkuS .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-tmYQJSEkuS .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-tmYQJSEkuS .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-tmYQJSEkuS .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-tmYQJSEkuS .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-ucu77xSuH8 {
  overflow: hidden !important;
  background: linear-gradient(to right, #149506 0%, #149506 30%, #103d0b 30%, #103d0b 100%);
}
.cid-ucu77xSuH8 .animated-element {
  color: #efefef;
}
.cid-ucu77xSuH8 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ucu77xSuH8 .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-ucu77xSuH8 .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu77xSuH8 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ucu77xSuH8 {
    background: #103d0b;
  }
  .cid-ucu77xSuH8 .img-block {
    padding-bottom: 2rem;
  }
}
.cid-ucu77xSuH8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu77xSuH8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctZA6ezWA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uctZA6ezWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctZA6ezWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctZA6ezWA .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .container {
    padding: 0 6px;
  }
}
.cid-uctZA6ezWA .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uctZA6ezWA .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uctZA6ezWA .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uctZA6ezWA .row {
    padding: 0 30px;
  }
}
.cid-uctZA6ezWA .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uctZA6ezWA .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uctZA6ezWA .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uctZA6ezWA .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uctZA6ezWA .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uctZA6ezWA .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uctZA6ezWA .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uctZA6ezWA .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uctZA6ezWA .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctZA6ezWA .mbr-section-title {
  color: #b30710;
  text-align: center;
}
.cid-uctZA6ezWA .list {
  color: #131313;
}
.cid-ucoyhHRWRU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucoyhHRWRU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucoyhHRWRU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucoyhHRWRU .section-border-item {
  background-color: #fcdb42;
}
.cid-ucoyhHRWRU .mbr-section-title {
  color: #fff;
}
.cid-ucoyhHRWRU .mbr-section-subtitle {
  color: #3fd72e;
  background-image: linear-gradient(315deg, currentColor, #139dff) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ucoyhHRWRU .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucoyhHRWRU .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-tmYUo1WH1Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tmYUo1WH1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmYUo1WH1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmYUo1WH1Q .section-border-item {
  background-color: #2b137d;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .section-border-item_center {
    display: none;
  }
}
.cid-tmYUo1WH1Q .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .main-container {
    flex-wrap: wrap;
  }
}
.cid-tmYUo1WH1Q .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .card-wrap {
    width: 100%;
  }
}
.cid-tmYUo1WH1Q .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tmYUo1WH1Q .card-box {
    max-width: 100%;
  }
}
.cid-tmYUo1WH1Q .card-title {
  color: #090f10;
}
.cid-tmYUo1WH1Q .card-subtitle {
  color: #0a3305;
}
.cid-tmYUo1WH1Q .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-tmYUo1WH1Q .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-tmYUo1WH1Q .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-tmYUo1WH1Q .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-tmYUo1WH1Q .list {
    grid-template-columns: 1fr;
  }
}
.cid-tmYUo1WH1Q .list-title {
  color: #563cae;
}
.cid-tmYUo1WH1Q .list-text {
  color: #090f10;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tmYUo1WH1Q .list-text {
    margin-top: 0.75rem;
  }
}
.cid-tmYUo1WH1Q .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-tmYUo1WH1Q .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-tmYUo1WH1Q .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tmYUo1WH1Q .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-tmYUo1WH1Q .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #2b137d;
  }
}
.cid-tmYUo1WH1Q .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-tmYUo1WH1Q .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-tmYUo1WH1Q .mbr-text,
.cid-tmYUo1WH1Q .mbr-section-btn {
  color: #090f10;
}
.cid-ucoGIUPqX3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucoGIUPqX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucoGIUPqX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucoGIUPqX3 .section-border-item {
  background-color: #fcdb42;
}
.cid-ucoGIUPqX3 .card-title {
  color: #000000;
}
.cid-ucoGIUPqX3 .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucoGIUPqX3 .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-ucoGIUPqX3 .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucoGIUPqX3 .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8F1wM0O {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #c1f3bb;
}
.cid-ucu8F1wM0O .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8F1wM0O .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucu8F1wM0O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8F1wM0O h1 {
  max-width: 800px;
}
.cid-ucu8F1wM0O p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucu8F1wM0O .btn:hover {
  transform: scale(1.1);
  background: #0597ff !important;
  border-color: #0597ff !important;
  color: #ec101b !important;
}
.cid-ucu8F1wM0O .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucu8F1wM0O .btn div {
  overflow: hidden;
}
.cid-ucu8F1wM0O .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucu8F1wM0O {
    align-items: center;
  }
  .cid-ucu8F1wM0O .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucu8F1wM0O .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucu8F1wM0O {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucu8F1wM0O .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucu8F1wM0O .content-wrap {
    width: 100%;
  }
}
.cid-ucu8F1wM0O .mbr-section-subtitle,
.cid-ucu8F1wM0O .line {
  color: #291f1e;
}
.cid-ucu8F1wM0O .mbr-text,
.cid-ucu8F1wM0O .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucu8F1wM0O .mbr-section-title {
  color: #291f1e;
}
.cid-ucoHGEjA1h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucoHGEjA1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucoHGEjA1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucoHGEjA1h .section-border-item {
  background-color: #fcdb42;
}
.cid-ucoHGEjA1h .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-ucoHGEjA1h .main-container {
    padding: 3rem 0;
  }
}
.cid-ucoHGEjA1h .title-wrap {
  width: 100%;
}
.cid-ucoHGEjA1h .title-box {
  width: 100%;
}
.cid-ucoHGEjA1h .mbr-title {
  color: #FFF;
  text-align: center;
}
.cid-ucoHGEjA1h .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucoHGEjA1h .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucoHGEjA1h .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #fcdb42;
  border-bottom: 1px solid #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .card-row {
    flex-wrap: wrap;
  }
}
.cid-ucoHGEjA1h .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .card {
    width: 100%;
  }
}
.cid-ucoHGEjA1h .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-ucoHGEjA1h .card-wrap {
  position: relative;
  display: flex;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
  }
}
.cid-ucoHGEjA1h .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .cid-ucoHGEjA1h .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-ucoHGEjA1h .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 48px;
  color: #0597ff;
  margin-right: 0;
}
.cid-ucoHGEjA1h .card-text-wrap {
  width: 100%;
  flex-grow: 1;
}
.cid-ucoHGEjA1h .card-title {
  color: #FFF;
}
.cid-ucoHGEjA1h .card-text {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucoHGEjA1h .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucoLvJ73KM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
}
.cid-ucoLvJ73KM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucoLvJ73KM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucoLvJ73KM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucoLvJ73KM .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucoLvJ73KM .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucoLvJ73KM .container {
    padding: 0 16px;
  }
}
.cid-ucoLvJ73KM .row {
  justify-content: center;
}
.cid-ucoLvJ73KM .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucoLvJ73KM .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucoLvJ73KM .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ucoLvJ73KM .mbr-section-title {
  color: #f0f0f0;
}
.cid-ucoLvJ73KM .mbr-text {
  color: #000000;
}
.cid-ucoLvJ73KM .mbr-section-title,
.cid-ucoLvJ73KM .mbr-section-btn {
  color: #000000;
}
.cid-uctGEISvge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-uctGEISvge .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctGEISvge .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-uctGEISvge .container {
    padding: 0 20px;
  }
}
.cid-uctGEISvge .row {
  margin: 0;
}
.cid-uctGEISvge .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctGEISvge .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uctGEISvge .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uctGEISvge .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uctGEISvge .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uctGEISvge .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uctGEISvge .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-ucu1v9Azql {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucu1v9Azql::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #1ec50d -10%, transparent 70%);
}
.cid-ucu1v9Azql .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu1v9Azql .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucu1v9Azql .container {
    padding: 0 16px;
  }
}
.cid-ucu1v9Azql .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucu1v9Azql .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucu1v9Azql .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu1v9Azql .mbr-section-title {
  color: #090f10;
}
.cid-ucu1v9Azql .mbr-text {
  color: #000000;
}
.cid-ucoNe4wfLM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucoNe4wfLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucoNe4wfLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucoNe4wfLM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ucoNe4wfLM .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucoNe4wfLM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucoNe4wfLM .container {
    padding: 0 20px;
  }
}
.cid-ucoNe4wfLM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucoNe4wfLM .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-ucoNe4wfLM .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucoNe4wfLM .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card {
  border-bottom: 1px solid #fafafa;
  border-radius: 0;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #fafafa;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #fafafa;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-ucoNe4wfLM .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-ucoNe4wfLM .mbr-section-title {
  color: #ffffff;
}
.cid-ucoNe4wfLM .panel-title-edit {
  color: #ffffff;
}
.cid-ucoNe4wfLM .panel-text {
  color: #1d1d1d;
}
.cid-uct0xtIRWL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uct0xtIRWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uct0xtIRWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uct0xtIRWL .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .container {
    padding: 0 30px;
  }
}
.cid-uct0xtIRWL .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #1ec50d;
  border-bottom: 10px solid #1ec50d;
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper {
    display: block;
  }
}
.cid-uct0xtIRWL .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
  margin-right: 0;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper .title-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-uct0xtIRWL .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uct0xtIRWL .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uct0xtIRWL .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uct0xtIRWL .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uct0xtIRWL .mbr-section-title {
  color: #000000;
}
.cid-uct0xtIRWL .mbr-text {
  color: #000000;
}
.cid-uct1zPvOfp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #149506;
  position: relative;
}
.cid-uct1zPvOfp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #353535, #44cf35);
}
.cid-uct1zPvOfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uct1zPvOfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uct1zPvOfp .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uct1zPvOfp .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uct1zPvOfp .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uct1zPvOfp .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uct1zPvOfp .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uct1zPvOfp .row {
  justify-content: space-between;
}
.cid-uct1zPvOfp .item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-uct1zPvOfp .item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.cid-uct1zPvOfp .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-uct1zPvOfp .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uct1zPvOfp .mbr-section-title {
  color: #ffffff;
}
.cid-uct1zPvOfp .card-title {
  color: #f4f4f4;
}
.cid-uct1zPvOfp .card-text {
  color: #c1c1c1;
}
.cid-uct3SypwmW {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #c1f3bb;
}
.cid-uct3SypwmW .mbr-text {
  color: #000000;
}
.cid-uct3SypwmW .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uct3SypwmW .mbr-section-title {
  color: #000000;
}
.cid-ucthsmjTx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #149506;
}
.cid-ucthsmjTx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucthsmjTx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ucthsmjTx9 .mbr-section-head {
    text-align: center;
  }
}
.cid-ucthsmjTx9 .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucthsmjTx9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucthsmjTx9 .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-ucthsmjTx9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucthsmjTx9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucthsmjTx9 .mbr-section-title {
  color: #ffffff;
}
.cid-uctjNADk97 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-uctjNADk97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctjNADk97 .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-uctjNADk97 .container {
    padding: 0 30px;
  }
}
.cid-uctjNADk97 .row {
  justify-content: center;
}
.cid-uctjNADk97 .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-uctjNADk97 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uctjNADk97 .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctjNADk97 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:hover,
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:hover::before,
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-uctjNADk97 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uctjNADk97 .mbr-section-title {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-section-subtitle {
  color: #139dff;
}
.cid-uctjNADk97 .list {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-address {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-copy {
  color: #0597ff;
}
.cid-uctjNADk97 .list,
.cid-uctjNADk97 .item-wrap,
.cid-uctjNADk97 .nav-wrapper {
  color: #fafafa;
}
.cid-uctnKsuO55 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uctnKsuO55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctnKsuO55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctnKsuO55 .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-uctnKsuO55 .section-border-item_center {
    display: none;
  }
}
.cid-uctnKsuO55 .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uctnKsuO55 .main-container {
    flex-wrap: wrap;
  }
}
.cid-uctnKsuO55 .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uctnKsuO55 .card-wrap {
    width: 100%;
  }
}
.cid-uctnKsuO55 .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-uctnKsuO55 .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uctnKsuO55 .card-box {
    max-width: 100%;
  }
}
.cid-uctnKsuO55 .card-title {
  color: #FFF;
}
.cid-uctnKsuO55 .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uctnKsuO55 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uctnKsuO55 .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uctnKsuO55 .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-uctnKsuO55 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-uctnKsuO55 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uctnKsuO55 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-uctnKsuO55 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-uctnKsuO55 .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-uctnKsuO55 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uctnKsuO55 .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-uctnKsuO55 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uctnKsuO55 .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-uctnKsuO55 .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-uctnKsuO55 .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-uctnKsuO55 .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-uctnSfwrVb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uctnSfwrVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctnSfwrVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctnSfwrVb .section-border-item {
  background-color: #fcdb42;
}
.cid-uctnSfwrVb .card-title {
  color: #FFF;
}
.cid-uctnSfwrVb .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uctnSfwrVb .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-uctnSfwrVb .card-text {
  color: #1b1717;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uctnSfwrVb .card-text {
    margin-top: 0.75rem;
  }
}
.cid-tmYQJSEkuS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-tmYQJSEkuS nav.navbar {
  position: fixed;
}
.cid-tmYQJSEkuS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmYQJSEkuS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmYQJSEkuS .dropdown-item:hover,
.cid-tmYQJSEkuS .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-tmYQJSEkuS .dropdown-item:hover span {
  color: white;
}
.cid-tmYQJSEkuS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmYQJSEkuS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmYQJSEkuS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmYQJSEkuS .nav-link {
  position: relative;
}
.cid-tmYQJSEkuS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmYQJSEkuS .container {
    flex-wrap: nowrap;
  }
}
.cid-tmYQJSEkuS .dropdown-menu,
.cid-tmYQJSEkuS .navbar.opened {
  background: #c1f3bb !important;
}
.cid-tmYQJSEkuS .nav-item:focus,
.cid-tmYQJSEkuS .nav-link:focus {
  outline: none;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmYQJSEkuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmYQJSEkuS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmYQJSEkuS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmYQJSEkuS .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-tmYQJSEkuS .navbar.opened {
  transition: all 0.3s;
}
.cid-tmYQJSEkuS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmYQJSEkuS .navbar .navbar-logo img {
  width: auto;
}
.cid-tmYQJSEkuS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmYQJSEkuS .navbar.collapsed {
  justify-content: center;
}
.cid-tmYQJSEkuS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmYQJSEkuS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmYQJSEkuS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmYQJSEkuS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmYQJSEkuS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tmYQJSEkuS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmYQJSEkuS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmYQJSEkuS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmYQJSEkuS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmYQJSEkuS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmYQJSEkuS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tmYQJSEkuS .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tmYQJSEkuS .navbar.navbar-short {
  min-height: auto;
}
.cid-tmYQJSEkuS .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-tmYQJSEkuS .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-tmYQJSEkuS .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-tmYQJSEkuS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-tmYQJSEkuS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmYQJSEkuS .dropdown-item.active,
.cid-tmYQJSEkuS .dropdown-item:active {
  background-color: transparent;
}
.cid-tmYQJSEkuS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmYQJSEkuS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmYQJSEkuS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-tmYQJSEkuS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmYQJSEkuS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmYQJSEkuS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmYQJSEkuS .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-tmYQJSEkuS .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-tmYQJSEkuS .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tmYQJSEkuS .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-tmYQJSEkuS .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-tmYQJSEkuS button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-tmYQJSEkuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tmYQJSEkuS nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmYQJSEkuS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmYQJSEkuS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmYQJSEkuS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmYQJSEkuS .navbar {
    height: 70px;
  }
  .cid-tmYQJSEkuS .navbar.opened {
    height: auto;
  }
  .cid-tmYQJSEkuS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmYQJSEkuS .container-fluid {
  padding-right: 0;
}
.cid-tmYQJSEkuS .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-tmYQJSEkuS .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-tmYQJSEkuS .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-tmYQJSEkuS .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-tmYQJSEkuS .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-tmYQJSEkuS .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-tmYQJSEkuS .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-tmYQJSEkuS .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-tmYQJSEkuS .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-tmYQJSEkuS .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-tmYQJSEkuS .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-tmYQJSEkuS .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-tmYQJSEkuS .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-uctnYa2ZBw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1b1717;
}
.cid-uctnYa2ZBw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctnYa2ZBw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctnYa2ZBw .google-map {
  height: 30rem;
  position: relative;
}
.cid-uctnYa2ZBw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uctnYa2ZBw .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-uctnYa2ZBw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uctnYa2ZBw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uctnYa2ZBw .mbr-section-title {
  color: #ffffff;
}
.cid-uctjNADk97 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-uctjNADk97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctjNADk97 .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-uctjNADk97 .container {
    padding: 0 30px;
  }
}
.cid-uctjNADk97 .row {
  justify-content: center;
}
.cid-uctjNADk97 .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-uctjNADk97 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uctjNADk97 .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctjNADk97 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:hover,
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:hover::before,
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-uctjNADk97 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctjNADk97 .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctjNADk97 .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-uctjNADk97 .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctjNADk97 .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-uctjNADk97 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uctjNADk97 .mbr-section-title {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-section-subtitle {
  color: #139dff;
}
.cid-uctjNADk97 .list {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-address {
  color: #bee0d6;
}
.cid-uctjNADk97 .mbr-copy {
  color: #0597ff;
}
.cid-uctjNADk97 .list,
.cid-uctjNADk97 .item-wrap,
.cid-uctjNADk97 .nav-wrapper {
  color: #fafafa;
}
.cid-uctocmNX4D {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uctocmNX4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctocmNX4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctocmNX4D .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-uctocmNX4D .section-border-item_center {
    display: none;
  }
}
.cid-uctocmNX4D .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uctocmNX4D .main-container {
    flex-wrap: wrap;
  }
}
.cid-uctocmNX4D .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uctocmNX4D .card-wrap {
    width: 100%;
  }
}
.cid-uctocmNX4D .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-uctocmNX4D .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uctocmNX4D .card-box {
    max-width: 100%;
  }
}
.cid-uctocmNX4D .card-title {
  color: #FFF;
}
.cid-uctocmNX4D .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uctocmNX4D .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uctocmNX4D .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uctocmNX4D .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-uctocmNX4D .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-uctocmNX4D .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uctocmNX4D .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-uctocmNX4D .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-uctocmNX4D .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-uctocmNX4D .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uctocmNX4D .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-uctocmNX4D .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uctocmNX4D .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-uctocmNX4D .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-uctocmNX4D .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-uctocmNX4D .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-uctocnvKXL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uctocnvKXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctocnvKXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctocnvKXL .section-border-item {
  background-color: #fcdb42;
}
.cid-uctocnvKXL .card-title {
  color: #FFF;
}
.cid-uctocnvKXL .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uctocnvKXL .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-uctocnvKXL .card-text {
  color: #1b1717;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uctocnvKXL .card-text {
    margin-top: 0.75rem;
  }
}
.cid-uctocnSCm9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-uctocnSCm9 nav.navbar {
  position: fixed;
}
.cid-uctocnSCm9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uctocnSCm9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uctocnSCm9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uctocnSCm9 .dropdown-item:hover,
.cid-uctocnSCm9 .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-uctocnSCm9 .dropdown-item:hover span {
  color: white;
}
.cid-uctocnSCm9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uctocnSCm9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uctocnSCm9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uctocnSCm9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uctocnSCm9 .nav-link {
  position: relative;
}
.cid-uctocnSCm9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uctocnSCm9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uctocnSCm9 .dropdown-menu,
.cid-uctocnSCm9 .navbar.opened {
  background: #c1f3bb !important;
}
.cid-uctocnSCm9 .nav-item:focus,
.cid-uctocnSCm9 .nav-link:focus {
  outline: none;
}
.cid-uctocnSCm9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uctocnSCm9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uctocnSCm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uctocnSCm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uctocnSCm9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uctocnSCm9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uctocnSCm9 .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-uctocnSCm9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uctocnSCm9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uctocnSCm9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uctocnSCm9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uctocnSCm9 .navbar.collapsed {
  justify-content: center;
}
.cid-uctocnSCm9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uctocnSCm9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uctocnSCm9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uctocnSCm9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uctocnSCm9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uctocnSCm9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uctocnSCm9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uctocnSCm9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uctocnSCm9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uctocnSCm9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uctocnSCm9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uctocnSCm9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uctocnSCm9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uctocnSCm9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uctocnSCm9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uctocnSCm9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uctocnSCm9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uctocnSCm9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-uctocnSCm9 .navbar.navbar-short {
  min-height: auto;
}
.cid-uctocnSCm9 .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-uctocnSCm9 .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uctocnSCm9 .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-uctocnSCm9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uctocnSCm9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uctocnSCm9 .dropdown-item.active,
.cid-uctocnSCm9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uctocnSCm9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uctocnSCm9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uctocnSCm9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uctocnSCm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-uctocnSCm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uctocnSCm9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uctocnSCm9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uctocnSCm9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-uctocnSCm9 .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-uctocnSCm9 .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-uctocnSCm9 .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-uctocnSCm9 .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-uctocnSCm9 button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uctocnSCm9 button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-uctocnSCm9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uctocnSCm9 button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-uctocnSCm9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-uctocnSCm9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-uctocnSCm9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-uctocnSCm9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-uctocnSCm9 nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uctocnSCm9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uctocnSCm9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uctocnSCm9 nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uctocnSCm9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uctocnSCm9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uctocnSCm9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uctocnSCm9 .navbar {
    height: 70px;
  }
  .cid-uctocnSCm9 .navbar.opened {
    height: auto;
  }
  .cid-uctocnSCm9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uctocnSCm9 .container-fluid {
  padding-right: 0;
}
.cid-uctocnSCm9 .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-uctocnSCm9 .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-uctocnSCm9 .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-uctocnSCm9 .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-uctocnSCm9 .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-uctocnSCm9 .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-uctocnSCm9 .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-uctocnSCm9 .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-uctocnSCm9 .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-uctocnSCm9 .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-uctocnSCm9 .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-uctocnSCm9 .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-uctocnSCm9 .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-uctocnSCm9 .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-uctocnSCm9 .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-uctocnSCm9 .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-uctocnSCm9 .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-uctocok8qE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uctocok8qE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctocok8qE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uctocok8qE .google-map {
  height: 30rem;
  position: relative;
}
.cid-uctocok8qE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uctocok8qE .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-uctocok8qE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uctocok8qE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uctocoNnYe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-uctocoNnYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uctocoNnYe .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-uctocoNnYe .container {
    padding: 0 30px;
  }
}
.cid-uctocoNnYe .row {
  justify-content: center;
}
.cid-uctocoNnYe .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-uctocoNnYe .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uctocoNnYe .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctocoNnYe .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uctocoNnYe .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctocoNnYe .nav-wrapper .list .item-wrap:hover,
.cid-uctocoNnYe .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctocoNnYe .nav-wrapper .list .item-wrap:hover::before,
.cid-uctocoNnYe .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uctocoNnYe .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-uctocoNnYe .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctocoNnYe .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-uctocoNnYe .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uctocoNnYe .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-uctocoNnYe .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uctocoNnYe .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-uctocoNnYe .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uctocoNnYe .mbr-section-title {
  color: #bee0d6;
}
.cid-uctocoNnYe .mbr-section-subtitle {
  color: #139dff;
}
.cid-uctocoNnYe .list {
  color: #bee0d6;
}
.cid-uctocoNnYe .mbr-address {
  color: #bee0d6;
}
.cid-uctocoNnYe .mbr-copy {
  color: #0597ff;
}
.cid-uctocoNnYe .list,
.cid-uctocoNnYe .item-wrap,
.cid-uctocoNnYe .nav-wrapper {
  color: #fafafa;
}
.cid-ucu8QCjTb2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-ucu8QCjTb2 nav.navbar {
  position: fixed;
}
.cid-ucu8QCjTb2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8QCjTb2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucu8QCjTb2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucu8QCjTb2 .dropdown-item:hover,
.cid-ucu8QCjTb2 .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-ucu8QCjTb2 .dropdown-item:hover span {
  color: white;
}
.cid-ucu8QCjTb2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucu8QCjTb2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucu8QCjTb2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucu8QCjTb2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucu8QCjTb2 .nav-link {
  position: relative;
}
.cid-ucu8QCjTb2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucu8QCjTb2 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucu8QCjTb2 .dropdown-menu,
.cid-ucu8QCjTb2 .navbar.opened {
  background: #c1f3bb !important;
}
.cid-ucu8QCjTb2 .nav-item:focus,
.cid-ucu8QCjTb2 .nav-link:focus {
  outline: none;
}
.cid-ucu8QCjTb2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucu8QCjTb2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucu8QCjTb2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucu8QCjTb2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8QCjTb2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucu8QCjTb2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucu8QCjTb2 .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-ucu8QCjTb2 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucu8QCjTb2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucu8QCjTb2 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucu8QCjTb2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucu8QCjTb2 .navbar.collapsed {
  justify-content: center;
}
.cid-ucu8QCjTb2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucu8QCjTb2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucu8QCjTb2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ucu8QCjTb2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucu8QCjTb2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucu8QCjTb2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucu8QCjTb2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucu8QCjTb2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucu8QCjTb2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucu8QCjTb2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucu8QCjTb2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucu8QCjTb2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucu8QCjTb2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucu8QCjTb2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucu8QCjTb2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucu8QCjTb2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucu8QCjTb2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucu8QCjTb2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-ucu8QCjTb2 .navbar.navbar-short {
  min-height: auto;
}
.cid-ucu8QCjTb2 .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-ucu8QCjTb2 .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-ucu8QCjTb2 .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-ucu8QCjTb2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucu8QCjTb2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucu8QCjTb2 .dropdown-item.active,
.cid-ucu8QCjTb2 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucu8QCjTb2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucu8QCjTb2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucu8QCjTb2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucu8QCjTb2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-ucu8QCjTb2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucu8QCjTb2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucu8QCjTb2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucu8QCjTb2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-ucu8QCjTb2 .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-ucu8QCjTb2 .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ucu8QCjTb2 .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-ucu8QCjTb2 .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-ucu8QCjTb2 button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-ucu8QCjTb2 button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-ucu8QCjTb2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucu8QCjTb2 button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-ucu8QCjTb2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8QCjTb2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8QCjTb2 nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8QCjTb2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucu8QCjTb2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucu8QCjTb2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucu8QCjTb2 .navbar {
    height: 70px;
  }
  .cid-ucu8QCjTb2 .navbar.opened {
    height: auto;
  }
  .cid-ucu8QCjTb2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucu8QCjTb2 .container-fluid {
  padding-right: 0;
}
.cid-ucu8QCjTb2 .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-ucu8QCjTb2 .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-ucu8QCjTb2 .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-ucu8QCjTb2 .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-ucu8QCjTb2 .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-ucu8QCjTb2 .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-ucu8QCjTb2 .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-ucu8QCjTb2 .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-ucu8QCjTb2 .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-ucu8QCjTb2 .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-ucu8QCjTb2 .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-ucu8QCjTb2 .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-ucu8QCjTb2 .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-ucu8QCjTb2 .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-ucu8QCjTb2 .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-ucu8QCjTb2 .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-ucu8QCjTb2 .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-ucu8QCK9gf {
  overflow: hidden !important;
  background: linear-gradient(to right, #149506 0%, #149506 30%, #0a3305 30%, #0a3305 100%);
}
.cid-ucu8QCK9gf .animated-element {
  color: #efefef;
}
.cid-ucu8QCK9gf .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ucu8QCK9gf .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-ucu8QCK9gf .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8QCK9gf .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ucu8QCK9gf {
    background: #0a3305;
  }
  .cid-ucu8QCK9gf .img-block {
    padding-bottom: 2rem;
  }
}
.cid-ucu8QCK9gf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QCK9gf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QDbOmG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucu8QDbOmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QDbOmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QDbOmG .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .container {
    padding: 0 6px;
  }
}
.cid-ucu8QDbOmG .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucu8QDbOmG .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucu8QDbOmG .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucu8QDbOmG .row {
    padding: 0 30px;
  }
}
.cid-ucu8QDbOmG .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucu8QDbOmG .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucu8QDbOmG .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucu8QDbOmG .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucu8QDbOmG .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucu8QDbOmG .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucu8QDbOmG .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucu8QDbOmG .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucu8QDbOmG .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8QDbOmG .mbr-section-title {
  color: #ec101b;
  text-align: center;
}
.cid-ucu8QDbOmG .list {
  color: #131313;
}
.cid-ucu8QDuYGV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8QDuYGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QDuYGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QDuYGV .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8QDuYGV .mbr-section-title {
  color: #fff;
}
.cid-ucu8QDuYGV .mbr-section-subtitle {
  color: #3fd72e;
  background-image: linear-gradient(315deg, currentColor, #139dff) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ucu8QDuYGV .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8QDuYGV .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8QDSgdJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8QDSgdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QDSgdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QDSgdJ .section-border-item {
  background-color: #2b137d;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .section-border-item_center {
    display: none;
  }
}
.cid-ucu8QDSgdJ .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .main-container {
    flex-wrap: wrap;
  }
}
.cid-ucu8QDSgdJ .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .card-wrap {
    width: 100%;
  }
}
.cid-ucu8QDSgdJ .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8QDSgdJ .card-box {
    max-width: 100%;
  }
}
.cid-ucu8QDSgdJ .card-title {
  color: #090f10;
}
.cid-ucu8QDSgdJ .card-subtitle {
  color: #563cae;
}
.cid-ucu8QDSgdJ .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8QDSgdJ .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8QDSgdJ .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-ucu8QDSgdJ .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8QDSgdJ .list {
    grid-template-columns: 1fr;
  }
}
.cid-ucu8QDSgdJ .list-title {
  color: #563cae;
}
.cid-ucu8QDSgdJ .list-text {
  color: #090f10;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8QDSgdJ .list-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8QDSgdJ .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8QDSgdJ .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-ucu8QDSgdJ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ucu8QDSgdJ .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-ucu8QDSgdJ .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #2b137d;
  }
}
.cid-ucu8QDSgdJ .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-ucu8QDSgdJ .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-ucu8QDSgdJ .mbr-text,
.cid-ucu8QDSgdJ .mbr-section-btn {
  color: #090f10;
}
.cid-ucu8QEkikD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8QEkikD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QEkikD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QEkikD .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8QEkikD .card-title {
  color: #000000;
}
.cid-ucu8QEkikD .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8QEkikD .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-ucu8QEkikD .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8QEkikD .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8QEGEUK {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #c1f3bb;
}
.cid-ucu8QEGEUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QEGEUK .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucu8QEGEUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QEGEUK h1 {
  max-width: 800px;
}
.cid-ucu8QEGEUK p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucu8QEGEUK .btn:hover {
  transform: scale(1.1);
  background: #0597ff !important;
  border-color: #0597ff !important;
  color: #ec101b !important;
}
.cid-ucu8QEGEUK .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucu8QEGEUK .btn div {
  overflow: hidden;
}
.cid-ucu8QEGEUK .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucu8QEGEUK {
    align-items: center;
  }
  .cid-ucu8QEGEUK .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucu8QEGEUK .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucu8QEGEUK {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucu8QEGEUK .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucu8QEGEUK .content-wrap {
    width: 100%;
  }
}
.cid-ucu8QEGEUK .mbr-section-subtitle,
.cid-ucu8QEGEUK .line {
  color: #291f1e;
}
.cid-ucu8QEGEUK .mbr-text,
.cid-ucu8QEGEUK .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucu8QEGEUK .mbr-section-title {
  color: #291f1e;
}
.cid-ucu8QF2YhQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8QF2YhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QF2YhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QF2YhQ .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8QF2YhQ .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-ucu8QF2YhQ .main-container {
    padding: 3rem 0;
  }
}
.cid-ucu8QF2YhQ .title-wrap {
  width: 100%;
}
.cid-ucu8QF2YhQ .title-box {
  width: 100%;
}
.cid-ucu8QF2YhQ .mbr-title {
  color: #FFF;
  text-align: center;
}
.cid-ucu8QF2YhQ .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8QF2YhQ .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8QF2YhQ .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #fcdb42;
  border-bottom: 1px solid #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .card-row {
    flex-wrap: wrap;
  }
}
.cid-ucu8QF2YhQ .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .card {
    width: 100%;
  }
}
.cid-ucu8QF2YhQ .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-ucu8QF2YhQ .card-wrap {
  position: relative;
  display: flex;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
  }
}
.cid-ucu8QF2YhQ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .cid-ucu8QF2YhQ .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-ucu8QF2YhQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 48px;
  color: #0597ff;
  margin-right: 0;
}
.cid-ucu8QF2YhQ .card-text-wrap {
  width: 100%;
  flex-grow: 1;
}
.cid-ucu8QF2YhQ .card-title {
  color: #FFF;
}
.cid-ucu8QF2YhQ .card-text {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8QF2YhQ .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8QFC8n9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
}
.cid-ucu8QFC8n9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QFC8n9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QFC8n9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucu8QFC8n9 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QFC8n9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QFC8n9 .container {
    padding: 0 16px;
  }
}
.cid-ucu8QFC8n9 .row {
  justify-content: center;
}
.cid-ucu8QFC8n9 .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucu8QFC8n9 .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucu8QFC8n9 .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ucu8QFC8n9 .mbr-section-title {
  color: #f0f0f0;
}
.cid-ucu8QFC8n9 .mbr-text {
  color: #000000;
}
.cid-ucu8QFC8n9 .mbr-section-title,
.cid-ucu8QFC8n9 .mbr-section-btn {
  color: #000000;
}
.cid-ucueQZ7rOl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a3305;
}
.cid-ucueQZ7rOl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucueQZ7rOl .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-ucueQZ7rOl .container {
    padding: 0 20px;
  }
}
.cid-ucueQZ7rOl .row {
  margin: 0;
}
.cid-ucueQZ7rOl .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucueQZ7rOl .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucueQZ7rOl .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucueQZ7rOl .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucueQZ7rOl .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucueQZ7rOl .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucueQZ7rOl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucu8QGrRPo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucu8QGrRPo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #1ec50d -10%, transparent 70%);
}
.cid-ucu8QGrRPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QGrRPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucu8QGrRPo .container {
    padding: 0 16px;
  }
}
.cid-ucu8QGrRPo .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucu8QGrRPo .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucu8QGrRPo .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8QGrRPo .mbr-section-title {
  color: #090f10;
}
.cid-ucu8QGrRPo .mbr-text {
  color: #000000;
}
.cid-ucu8QGLByZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucu8QGLByZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QGLByZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QGLByZ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ucu8QGLByZ .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucu8QGLByZ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucu8QGLByZ .container {
    padding: 0 20px;
  }
}
.cid-ucu8QGLByZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8QGLByZ .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-ucu8QGLByZ .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8QGLByZ .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card {
  border-bottom: 1px solid #fafafa;
  border-radius: 0;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #fafafa;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #fafafa;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-ucu8QGLByZ .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-ucu8QGLByZ .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8QGLByZ .panel-title-edit {
  color: #ffffff;
}
.cid-ucu8QGLByZ .panel-text {
  color: #1d1d1d;
}
.cid-ucu8QHghXk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ucu8QHghXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QHghXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QHghXk .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .container {
    padding: 0 30px;
  }
}
.cid-ucu8QHghXk .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #1ec50d;
  border-bottom: 10px solid #1ec50d;
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper {
    display: block;
  }
}
.cid-ucu8QHghXk .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
  margin-right: 0;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper .title-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-ucu8QHghXk .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucu8QHghXk .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ucu8QHghXk .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ucu8QHghXk .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8QHghXk .mbr-section-title {
  color: #000000;
}
.cid-ucu8QHghXk .mbr-text {
  color: #000000;
}
.cid-ucu8QHFHjk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #149506;
  position: relative;
}
.cid-ucu8QHFHjk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #353535, #44cf35);
}
.cid-ucu8QHFHjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QHFHjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8QHFHjk .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucu8QHFHjk .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHFHjk .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHFHjk .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8QHFHjk .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucu8QHFHjk .row {
  justify-content: space-between;
}
.cid-ucu8QHFHjk .item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8QHFHjk .item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.cid-ucu8QHFHjk .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-ucu8QHFHjk .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-ucu8QHFHjk .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8QHFHjk .card-title {
  color: #f4f4f4;
}
.cid-ucu8QHFHjk .card-text {
  color: #c1c1c1;
}
.cid-ucu8QI8iAe {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #c1f3bb;
}
.cid-ucu8QI8iAe .mbr-text {
  color: #000000;
}
.cid-ucu8QI8iAe .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucu8QI8iAe .mbr-section-title {
  color: #000000;
}
.cid-ucutVTQvFK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucutVTQvFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucutVTQvFK .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-ucutVTQvFK .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucutVTQvFK .container {
    padding: 0 12px;
  }
}
.cid-ucutVTQvFK .row {
  justify-content: center;
}
.cid-ucutVTQvFK .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucutVTQvFK .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucutVTQvFK .panel-group .card {
  border-radius: 50px;
  border: 3px solid #0a3305;
  box-shadow: 4px 4px #0a3305;
  background-color: #64db57;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucutVTQvFK .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucutVTQvFK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucutVTQvFK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucutVTQvFK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucutVTQvFK .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #0a3305;
  transition: all 0.3s ease-in-out;
}
.cid-ucutVTQvFK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucutVTQvFK .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucutVTQvFK .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucutVTQvFK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucutVTQvFK .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucutVTQvFK .panel-title-edit {
  color: #222222;
}
.cid-ucutVTQvFK .panel-text {
  color: #222222;
}
.cid-ucu8QItWJp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #149506;
}
.cid-ucu8QItWJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QItWJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ucu8QItWJp .mbr-section-head {
    text-align: center;
  }
}
.cid-ucu8QItWJp .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucu8QItWJp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucu8QItWJp .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-ucu8QItWJp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucu8QItWJp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucu8QItWJp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucu8QITtWI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-ucu8QITtWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8QITtWI .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-ucu8QITtWI .container {
    padding: 0 30px;
  }
}
.cid-ucu8QITtWI .row {
  justify-content: center;
}
.cid-ucu8QITtWI .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-ucu8QITtWI .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucu8QITtWI .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8QITtWI .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap:hover,
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap:hover::before,
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-ucu8QITtWI .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8QITtWI .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8QITtWI .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8QITtWI .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-ucu8QITtWI .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8QITtWI .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-ucu8QITtWI .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-ucu8QITtWI .mbr-section-title {
  color: #bee0d6;
}
.cid-ucu8QITtWI .mbr-section-subtitle {
  color: #139dff;
}
.cid-ucu8QITtWI .list {
  color: #bee0d6;
}
.cid-ucu8QITtWI .mbr-address {
  color: #bee0d6;
}
.cid-ucu8QITtWI .mbr-copy {
  color: #0597ff;
}
.cid-ucu8QITtWI .list,
.cid-ucu8QITtWI .item-wrap,
.cid-ucu8QITtWI .nav-wrapper {
  color: #fafafa;
}
.cid-ucu8RhrE7M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-ucu8RhrE7M nav.navbar {
  position: fixed;
}
.cid-ucu8RhrE7M .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RhrE7M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucu8RhrE7M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucu8RhrE7M .dropdown-item:hover,
.cid-ucu8RhrE7M .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-ucu8RhrE7M .dropdown-item:hover span {
  color: white;
}
.cid-ucu8RhrE7M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucu8RhrE7M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucu8RhrE7M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucu8RhrE7M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucu8RhrE7M .nav-link {
  position: relative;
}
.cid-ucu8RhrE7M .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucu8RhrE7M .container {
    flex-wrap: nowrap;
  }
}
.cid-ucu8RhrE7M .dropdown-menu,
.cid-ucu8RhrE7M .navbar.opened {
  background: #c1f3bb !important;
}
.cid-ucu8RhrE7M .nav-item:focus,
.cid-ucu8RhrE7M .nav-link:focus {
  outline: none;
}
.cid-ucu8RhrE7M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RhrE7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucu8RhrE7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucu8RhrE7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RhrE7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucu8RhrE7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucu8RhrE7M .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-ucu8RhrE7M .navbar.opened {
  transition: all 0.3s;
}
.cid-ucu8RhrE7M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucu8RhrE7M .navbar .navbar-logo img {
  width: auto;
}
.cid-ucu8RhrE7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucu8RhrE7M .navbar.collapsed {
  justify-content: center;
}
.cid-ucu8RhrE7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucu8RhrE7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucu8RhrE7M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ucu8RhrE7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucu8RhrE7M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucu8RhrE7M .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucu8RhrE7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucu8RhrE7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucu8RhrE7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucu8RhrE7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucu8RhrE7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucu8RhrE7M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucu8RhrE7M .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucu8RhrE7M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucu8RhrE7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucu8RhrE7M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucu8RhrE7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucu8RhrE7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-ucu8RhrE7M .navbar.navbar-short {
  min-height: auto;
}
.cid-ucu8RhrE7M .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-ucu8RhrE7M .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-ucu8RhrE7M .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-ucu8RhrE7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucu8RhrE7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucu8RhrE7M .dropdown-item.active,
.cid-ucu8RhrE7M .dropdown-item:active {
  background-color: transparent;
}
.cid-ucu8RhrE7M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucu8RhrE7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucu8RhrE7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucu8RhrE7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-ucu8RhrE7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucu8RhrE7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucu8RhrE7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucu8RhrE7M .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-ucu8RhrE7M .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-ucu8RhrE7M .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ucu8RhrE7M .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-ucu8RhrE7M .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-ucu8RhrE7M button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-ucu8RhrE7M button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-ucu8RhrE7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucu8RhrE7M button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-ucu8RhrE7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-ucu8RhrE7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8RhrE7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8RhrE7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-ucu8RhrE7M nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8RhrE7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8RhrE7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8RhrE7M nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8RhrE7M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucu8RhrE7M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucu8RhrE7M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucu8RhrE7M .navbar {
    height: 70px;
  }
  .cid-ucu8RhrE7M .navbar.opened {
    height: auto;
  }
  .cid-ucu8RhrE7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucu8RhrE7M .container-fluid {
  padding-right: 0;
}
.cid-ucu8RhrE7M .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-ucu8RhrE7M .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-ucu8RhrE7M .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-ucu8RhrE7M .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-ucu8RhrE7M .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-ucu8RhrE7M .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-ucu8RhrE7M .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-ucu8RhrE7M .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-ucu8RhrE7M .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-ucu8RhrE7M .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-ucu8RhrE7M .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-ucu8RhrE7M .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RhrE7M .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-ucu8RhrE7M .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-ucu8RhrE7M .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-ucu8RhrE7M .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-ucu8RhrE7M .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-ucu8RhPDiH {
  overflow: hidden !important;
  background: linear-gradient(to right, #149506 0%, #149506 30%, #0a3305 30%, #0a3305 100%);
}
.cid-ucu8RhPDiH .animated-element {
  color: #efefef;
}
.cid-ucu8RhPDiH .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ucu8RhPDiH .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-ucu8RhPDiH .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RhPDiH .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ucu8RhPDiH {
    background: #0a3305;
  }
  .cid-ucu8RhPDiH .img-block {
    padding-bottom: 2rem;
  }
}
.cid-ucu8RhPDiH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RhPDiH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8Ricxmn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucu8Ricxmn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8Ricxmn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8Ricxmn .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .container {
    padding: 0 6px;
  }
}
.cid-ucu8Ricxmn .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucu8Ricxmn .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucu8Ricxmn .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucu8Ricxmn .row {
    padding: 0 30px;
  }
}
.cid-ucu8Ricxmn .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucu8Ricxmn .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucu8Ricxmn .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucu8Ricxmn .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucu8Ricxmn .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucu8Ricxmn .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucu8Ricxmn .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucu8Ricxmn .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucu8Ricxmn .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8Ricxmn .mbr-section-title {
  color: #b30710;
  text-align: center;
}
.cid-ucu8Ricxmn .list {
  color: #131313;
}
.cid-ucu8Rivcvn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8Rivcvn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8Rivcvn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8Rivcvn .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8Rivcvn .mbr-section-title {
  color: #fff;
}
.cid-ucu8Rivcvn .mbr-section-subtitle {
  color: #3fd72e;
  background-image: linear-gradient(315deg, currentColor, #139dff) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ucu8Rivcvn .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8Rivcvn .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RiN4Xk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RiN4Xk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RiN4Xk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RiN4Xk .section-border-item {
  background-color: #2b137d;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .section-border-item_center {
    display: none;
  }
}
.cid-ucu8RiN4Xk .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .main-container {
    flex-wrap: wrap;
  }
}
.cid-ucu8RiN4Xk .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .card-wrap {
    width: 100%;
  }
}
.cid-ucu8RiN4Xk .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RiN4Xk .card-box {
    max-width: 100%;
  }
}
.cid-ucu8RiN4Xk .card-title {
  color: #090f10;
}
.cid-ucu8RiN4Xk .card-subtitle {
  color: #563cae;
}
.cid-ucu8RiN4Xk .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8RiN4Xk .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RiN4Xk .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-ucu8RiN4Xk .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RiN4Xk .list {
    grid-template-columns: 1fr;
  }
}
.cid-ucu8RiN4Xk .list-title {
  color: #563cae;
}
.cid-ucu8RiN4Xk .list-text {
  color: #090f10;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RiN4Xk .list-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RiN4Xk .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8RiN4Xk .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-ucu8RiN4Xk .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ucu8RiN4Xk .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-ucu8RiN4Xk .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #2b137d;
  }
}
.cid-ucu8RiN4Xk .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-ucu8RiN4Xk .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-ucu8RiN4Xk .mbr-text,
.cid-ucu8RiN4Xk .mbr-section-btn {
  color: #090f10;
}
.cid-ucu8Rjcdqs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8Rjcdqs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8Rjcdqs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8Rjcdqs .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8Rjcdqs .card-title {
  color: #000000;
}
.cid-ucu8Rjcdqs .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8Rjcdqs .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-ucu8Rjcdqs .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8Rjcdqs .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RjvGYV {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #c1f3bb;
}
.cid-ucu8RjvGYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RjvGYV .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucu8RjvGYV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RjvGYV h1 {
  max-width: 800px;
}
.cid-ucu8RjvGYV p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucu8RjvGYV .btn:hover {
  transform: scale(1.1);
  background: #0597ff !important;
  border-color: #0597ff !important;
  color: #ec101b !important;
}
.cid-ucu8RjvGYV .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucu8RjvGYV .btn div {
  overflow: hidden;
}
.cid-ucu8RjvGYV .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucu8RjvGYV {
    align-items: center;
  }
  .cid-ucu8RjvGYV .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucu8RjvGYV .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RjvGYV {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucu8RjvGYV .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucu8RjvGYV .content-wrap {
    width: 100%;
  }
}
.cid-ucu8RjvGYV .mbr-section-subtitle,
.cid-ucu8RjvGYV .line {
  color: #291f1e;
}
.cid-ucu8RjvGYV .mbr-text,
.cid-ucu8RjvGYV .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucu8RjvGYV .mbr-section-title {
  color: #291f1e;
}
.cid-ucu8RjQZC0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RjQZC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RjQZC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RjQZC0 .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8RjQZC0 .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RjQZC0 .main-container {
    padding: 3rem 0;
  }
}
.cid-ucu8RjQZC0 .title-wrap {
  width: 100%;
}
.cid-ucu8RjQZC0 .title-box {
  width: 100%;
}
.cid-ucu8RjQZC0 .mbr-title {
  color: #FFF;
  text-align: center;
}
.cid-ucu8RjQZC0 .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8RjQZC0 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RjQZC0 .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #fcdb42;
  border-bottom: 1px solid #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .card-row {
    flex-wrap: wrap;
  }
}
.cid-ucu8RjQZC0 .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .card {
    width: 100%;
  }
}
.cid-ucu8RjQZC0 .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-ucu8RjQZC0 .card-wrap {
  position: relative;
  display: flex;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
  }
}
.cid-ucu8RjQZC0 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .cid-ucu8RjQZC0 .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-ucu8RjQZC0 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 48px;
  color: #0597ff;
  margin-right: 0;
}
.cid-ucu8RjQZC0 .card-text-wrap {
  width: 100%;
  flex-grow: 1;
}
.cid-ucu8RjQZC0 .card-title {
  color: #FFF;
}
.cid-ucu8RjQZC0 .card-text {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RjQZC0 .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8Rki90m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
}
.cid-ucu8Rki90m .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8Rki90m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8Rki90m .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucu8Rki90m .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8Rki90m .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8Rki90m .container {
    padding: 0 16px;
  }
}
.cid-ucu8Rki90m .row {
  justify-content: center;
}
.cid-ucu8Rki90m .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucu8Rki90m .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucu8Rki90m .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ucu8Rki90m .mbr-section-title {
  color: #f0f0f0;
}
.cid-ucu8Rki90m .mbr-text {
  color: #000000;
}
.cid-ucu8Rki90m .mbr-section-title,
.cid-ucu8Rki90m .mbr-section-btn {
  color: #000000;
}
.cid-ucu8RkDG86 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucu8RkDG86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RkDG86 .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-ucu8RkDG86 .container {
    padding: 0 20px;
  }
}
.cid-ucu8RkDG86 .row {
  margin: 0;
}
.cid-ucu8RkDG86 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RkDG86 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucu8RkDG86 .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucu8RkDG86 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucu8RkDG86 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucu8RkDG86 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucu8RkDG86 .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-ucu8RkW6lT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucu8RkW6lT::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #1ec50d -10%, transparent 70%);
}
.cid-ucu8RkW6lT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RkW6lT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucu8RkW6lT .container {
    padding: 0 16px;
  }
}
.cid-ucu8RkW6lT .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucu8RkW6lT .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucu8RkW6lT .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8RkW6lT .mbr-section-title {
  color: #090f10;
}
.cid-ucu8RkW6lT .mbr-text {
  color: #000000;
}
.cid-ucu8RlhJIT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucu8RlhJIT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RlhJIT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RlhJIT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ucu8RlhJIT .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucu8RlhJIT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RlhJIT .container {
    padding: 0 20px;
  }
}
.cid-ucu8RlhJIT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RlhJIT .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-ucu8RlhJIT .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8RlhJIT .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card {
  border-bottom: 1px solid #fafafa;
  border-radius: 0;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #fafafa;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #fafafa;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-ucu8RlhJIT .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-ucu8RlhJIT .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8RlhJIT .panel-title-edit {
  color: #ffffff;
}
.cid-ucu8RlhJIT .panel-text {
  color: #1d1d1d;
}
.cid-ucu8RlQ05D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ucu8RlQ05D .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RlQ05D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RlQ05D .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .container {
    padding: 0 30px;
  }
}
.cid-ucu8RlQ05D .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #1ec50d;
  border-bottom: 10px solid #1ec50d;
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper {
    display: block;
  }
}
.cid-ucu8RlQ05D .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
  margin-right: 0;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper .title-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-ucu8RlQ05D .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucu8RlQ05D .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ucu8RlQ05D .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ucu8RlQ05D .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8RlQ05D .mbr-section-title {
  color: #000000;
}
.cid-ucu8RlQ05D .mbr-text {
  color: #000000;
}
.cid-ucu8RmdpcC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #149506;
  position: relative;
}
.cid-ucu8RmdpcC::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #353535, #44cf35);
}
.cid-ucu8RmdpcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RmdpcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RmdpcC .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucu8RmdpcC .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RmdpcC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RmdpcC .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RmdpcC .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucu8RmdpcC .row {
  justify-content: space-between;
}
.cid-ucu8RmdpcC .item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8RmdpcC .item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.cid-ucu8RmdpcC .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-ucu8RmdpcC .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-ucu8RmdpcC .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8RmdpcC .card-title {
  color: #f4f4f4;
}
.cid-ucu8RmdpcC .card-text {
  color: #c1c1c1;
}
.cid-ucu8RmGJCw {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #c1f3bb;
}
.cid-ucu8RmGJCw .mbr-text {
  color: #000000;
}
.cid-ucu8RmGJCw .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucu8RmGJCw .mbr-section-title {
  color: #000000;
}
.cid-ucuvmlr61J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucuvmlr61J .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucuvmlr61J .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-ucuvmlr61J .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucuvmlr61J .container {
    padding: 0 12px;
  }
}
.cid-ucuvmlr61J .row {
  justify-content: center;
}
.cid-ucuvmlr61J .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucuvmlr61J .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucuvmlr61J .panel-group .card {
  border-radius: 50px;
  border: 3px solid #0a3305;
  box-shadow: 4px 4px #0a3305;
  background-color: #64db57;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucuvmlr61J .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucuvmlr61J .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucuvmlr61J .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucuvmlr61J .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucuvmlr61J .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #0a3305;
  transition: all 0.3s ease-in-out;
}
.cid-ucuvmlr61J .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucuvmlr61J .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucuvmlr61J .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucuvmlr61J .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucuvmlr61J .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucuvmlr61J .panel-title-edit {
  color: #222222;
}
.cid-ucuvmlr61J .panel-text {
  color: #222222;
}
.cid-ucu8Rn2QcK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #149506;
}
.cid-ucu8Rn2QcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8Rn2QcK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ucu8Rn2QcK .mbr-section-head {
    text-align: center;
  }
}
.cid-ucu8Rn2QcK .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucu8Rn2QcK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucu8Rn2QcK .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-ucu8Rn2QcK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucu8Rn2QcK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucu8Rn2QcK .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8RnrR4b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-ucu8RnrR4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RnrR4b .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-ucu8RnrR4b .container {
    padding: 0 30px;
  }
}
.cid-ucu8RnrR4b .row {
  justify-content: center;
}
.cid-ucu8RnrR4b .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-ucu8RnrR4b .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucu8RnrR4b .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8RnrR4b .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap:hover,
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap:hover::before,
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-ucu8RnrR4b .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8RnrR4b .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8RnrR4b .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8RnrR4b .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-ucu8RnrR4b .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RnrR4b .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-ucu8RnrR4b .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-ucu8RnrR4b .mbr-section-title {
  color: #bee0d6;
}
.cid-ucu8RnrR4b .mbr-section-subtitle {
  color: #139dff;
}
.cid-ucu8RnrR4b .list {
  color: #bee0d6;
}
.cid-ucu8RnrR4b .mbr-address {
  color: #bee0d6;
}
.cid-ucu8RnrR4b .mbr-copy {
  color: #0597ff;
}
.cid-ucu8RnrR4b .list,
.cid-ucu8RnrR4b .item-wrap,
.cid-ucu8RnrR4b .nav-wrapper {
  color: #fafafa;
}
.cid-ucu8RF5CW4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 64px;
}
.cid-ucu8RF5CW4 nav.navbar {
  position: fixed;
}
.cid-ucu8RF5CW4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RF5CW4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucu8RF5CW4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucu8RF5CW4 .dropdown-item:hover,
.cid-ucu8RF5CW4 .dropdown-item:focus {
  background: #ec101b !important;
  color: white !important;
}
.cid-ucu8RF5CW4 .dropdown-item:hover span {
  color: white;
}
.cid-ucu8RF5CW4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucu8RF5CW4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucu8RF5CW4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucu8RF5CW4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucu8RF5CW4 .nav-link {
  position: relative;
}
.cid-ucu8RF5CW4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucu8RF5CW4 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucu8RF5CW4 .dropdown-menu,
.cid-ucu8RF5CW4 .navbar.opened {
  background: #c1f3bb !important;
}
.cid-ucu8RF5CW4 .nav-item:focus,
.cid-ucu8RF5CW4 .nav-link:focus {
  outline: none;
}
.cid-ucu8RF5CW4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RF5CW4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucu8RF5CW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucu8RF5CW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucu8RF5CW4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucu8RF5CW4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucu8RF5CW4 .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #c1f3bb;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ec101b;
}
.cid-ucu8RF5CW4 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucu8RF5CW4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucu8RF5CW4 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucu8RF5CW4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucu8RF5CW4 .navbar.collapsed {
  justify-content: center;
}
.cid-ucu8RF5CW4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucu8RF5CW4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucu8RF5CW4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ucu8RF5CW4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucu8RF5CW4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucu8RF5CW4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucu8RF5CW4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucu8RF5CW4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucu8RF5CW4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucu8RF5CW4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucu8RF5CW4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucu8RF5CW4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucu8RF5CW4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucu8RF5CW4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucu8RF5CW4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucu8RF5CW4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucu8RF5CW4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucu8RF5CW4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-ucu8RF5CW4 .navbar.navbar-short {
  min-height: auto;
}
.cid-ucu8RF5CW4 .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-ucu8RF5CW4 .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-ucu8RF5CW4 .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-ucu8RF5CW4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-ucu8RF5CW4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucu8RF5CW4 .dropdown-item.active,
.cid-ucu8RF5CW4 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucu8RF5CW4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucu8RF5CW4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucu8RF5CW4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucu8RF5CW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1f3bb;
}
.cid-ucu8RF5CW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucu8RF5CW4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucu8RF5CW4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucu8RF5CW4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-ucu8RF5CW4 .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-ucu8RF5CW4 .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ucu8RF5CW4 .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-ucu8RF5CW4 .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-ucu8RF5CW4 button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-ucu8RF5CW4 button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-ucu8RF5CW4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucu8RF5CW4 button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-ucu8RF5CW4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8RF5CW4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-ucu8RF5CW4 nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucu8RF5CW4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucu8RF5CW4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucu8RF5CW4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucu8RF5CW4 .navbar {
    height: 70px;
  }
  .cid-ucu8RF5CW4 .navbar.opened {
    height: auto;
  }
  .cid-ucu8RF5CW4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucu8RF5CW4 .container-fluid {
  padding-right: 0;
}
.cid-ucu8RF5CW4 .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: .35fr 1fr .35fr;
  gap: 2rem;
  align-items: center;
}
.cid-ucu8RF5CW4 .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-ucu8RF5CW4 .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-ucu8RF5CW4 .navbar-collapse .nav-link:hover {
  color: #ec101b !important;
}
@media (max-width: 991px) {
  .cid-ucu8RF5CW4 .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-ucu8RF5CW4 .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-ucu8RF5CW4 .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-ucu8RF5CW4 .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-ucu8RF5CW4 .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-ucu8RF5CW4 .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-ucu8RF5CW4 .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-ucu8RF5CW4 .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RF5CW4 .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-ucu8RF5CW4 .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-ucu8RF5CW4 .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-ucu8RF5CW4 .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-ucu8RF5CW4 .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-ucu8RFsGUE {
  overflow: hidden !important;
  background: linear-gradient(to right, #149506 0%, #149506 30%, #0a3305 30%, #0a3305 100%);
}
.cid-ucu8RFsGUE .animated-element {
  color: #efefef;
}
.cid-ucu8RFsGUE .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ucu8RFsGUE .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-ucu8RFsGUE .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RFsGUE .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ucu8RFsGUE {
    background: #0a3305;
  }
  .cid-ucu8RFsGUE .img-block {
    padding-bottom: 2rem;
  }
}
.cid-ucu8RFsGUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RFsGUE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RFPvez {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucu8RFPvez .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RFPvez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RFPvez .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .container {
    padding: 0 6px;
  }
}
.cid-ucu8RFPvez .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-ucu8RFPvez .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-ucu8RFPvez .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-ucu8RFPvez .row {
    padding: 0 30px;
  }
}
.cid-ucu8RFPvez .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-ucu8RFPvez .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-ucu8RFPvez .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-ucu8RFPvez .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-ucu8RFPvez .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-ucu8RFPvez .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-ucu8RFPvez .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-ucu8RFPvez .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-ucu8RFPvez .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8RFPvez .mbr-section-title {
  color: #b30710;
  text-align: center;
}
.cid-ucu8RFPvez .list {
  color: #131313;
}
.cid-ucu8RGhvQc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RGhvQc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RGhvQc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RGhvQc .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8RGhvQc .mbr-section-title {
  color: #fff;
}
.cid-ucu8RGhvQc .mbr-section-subtitle {
  color: #3fd72e;
  background-image: linear-gradient(315deg, currentColor, #139dff) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ucu8RGhvQc .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGhvQc .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RGBHkQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c1f3bb;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RGBHkQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RGBHkQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RGBHkQ .section-border-item {
  background-color: #2b137d;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .section-border-item_center {
    display: none;
  }
}
.cid-ucu8RGBHkQ .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .main-container {
    flex-wrap: wrap;
  }
}
.cid-ucu8RGBHkQ .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .card-wrap {
    width: 100%;
  }
}
.cid-ucu8RGBHkQ .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RGBHkQ .card-box {
    max-width: 100%;
  }
}
.cid-ucu8RGBHkQ .card-title {
  color: #090f10;
}
.cid-ucu8RGBHkQ .card-subtitle {
  color: #563cae;
}
.cid-ucu8RGBHkQ .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGBHkQ .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RGBHkQ .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-ucu8RGBHkQ .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGBHkQ .list {
    grid-template-columns: 1fr;
  }
}
.cid-ucu8RGBHkQ .list-title {
  color: #563cae;
}
.cid-ucu8RGBHkQ .list-text {
  color: #090f10;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGBHkQ .list-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RGBHkQ .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGBHkQ .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-ucu8RGBHkQ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ucu8RGBHkQ .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-ucu8RGBHkQ .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #2b137d;
  }
}
.cid-ucu8RGBHkQ .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-ucu8RGBHkQ .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-ucu8RGBHkQ .mbr-text,
.cid-ucu8RGBHkQ .mbr-section-btn {
  color: #090f10;
}
.cid-ucu8RGZ4X3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RGZ4X3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RGZ4X3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RGZ4X3 .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8RGZ4X3 .card-title {
  color: #000000;
}
.cid-ucu8RGZ4X3 .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGZ4X3 .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RGZ4X3 .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RGZ4X3 .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RHkYqE {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #c1f3bb;
}
.cid-ucu8RHkYqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RHkYqE .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ucu8RHkYqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RHkYqE h1 {
  max-width: 800px;
}
.cid-ucu8RHkYqE p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ucu8RHkYqE .btn:hover {
  transform: scale(1.1);
  background: #0597ff !important;
  border-color: #0597ff !important;
  color: #ec101b !important;
}
.cid-ucu8RHkYqE .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-ucu8RHkYqE .btn div {
  overflow: hidden;
}
.cid-ucu8RHkYqE .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-ucu8RHkYqE {
    align-items: center;
  }
  .cid-ucu8RHkYqE .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucu8RHkYqE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RHkYqE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ucu8RHkYqE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ucu8RHkYqE .content-wrap {
    width: 100%;
  }
}
.cid-ucu8RHkYqE .mbr-section-subtitle,
.cid-ucu8RHkYqE .line {
  color: #291f1e;
}
.cid-ucu8RHkYqE .mbr-text,
.cid-ucu8RHkYqE .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ucu8RHkYqE .mbr-section-title {
  color: #291f1e;
}
.cid-ucu8RHGfbe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-ucu8RHGfbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RHGfbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RHGfbe .section-border-item {
  background-color: #fcdb42;
}
.cid-ucu8RHGfbe .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-ucu8RHGfbe .main-container {
    padding: 3rem 0;
  }
}
.cid-ucu8RHGfbe .title-wrap {
  width: 100%;
}
.cid-ucu8RHGfbe .title-box {
  width: 100%;
}
.cid-ucu8RHGfbe .mbr-title {
  color: #FFF;
  text-align: center;
}
.cid-ucu8RHGfbe .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucu8RHGfbe .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-ucu8RHGfbe .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #fcdb42;
  border-bottom: 1px solid #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .card-row {
    flex-wrap: wrap;
  }
}
.cid-ucu8RHGfbe .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .card {
    width: 100%;
  }
}
.cid-ucu8RHGfbe .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-ucu8RHGfbe .card-wrap {
  position: relative;
  display: flex;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
  }
}
.cid-ucu8RHGfbe .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .cid-ucu8RHGfbe .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-ucu8RHGfbe .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 48px;
  color: #0597ff;
  margin-right: 0;
}
.cid-ucu8RHGfbe .card-text-wrap {
  width: 100%;
  flex-grow: 1;
}
.cid-ucu8RHGfbe .card-title {
  color: #FFF;
}
.cid-ucu8RHGfbe .card-text {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucu8RHGfbe .card-text {
    margin-top: 0.75rem;
  }
}
.cid-ucu8RIfO43 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1f3bb;
}
.cid-ucu8RIfO43 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RIfO43 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RIfO43 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucu8RIfO43 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RIfO43 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RIfO43 .container {
    padding: 0 16px;
  }
}
.cid-ucu8RIfO43 .row {
  justify-content: center;
}
.cid-ucu8RIfO43 .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucu8RIfO43 .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucu8RIfO43 .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ucu8RIfO43 .mbr-section-title {
  color: #f0f0f0;
}
.cid-ucu8RIfO43 .mbr-text {
  color: #000000;
}
.cid-ucu8RIfO43 .mbr-section-title,
.cid-ucu8RIfO43 .mbr-section-btn {
  color: #000000;
}
.cid-ucu8RIBBSQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucu8RIBBSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RIBBSQ .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-ucu8RIBBSQ .container {
    padding: 0 20px;
  }
}
.cid-ucu8RIBBSQ .row {
  margin: 0;
}
.cid-ucu8RIBBSQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RIBBSQ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucu8RIBBSQ .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucu8RIBBSQ .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucu8RIBBSQ .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucu8RIBBSQ .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucu8RIBBSQ .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-ucu8RJ7b8I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucu8RJ7b8I::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #1ec50d -10%, transparent 70%);
}
.cid-ucu8RJ7b8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RJ7b8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucu8RJ7b8I .container {
    padding: 0 16px;
  }
}
.cid-ucu8RJ7b8I .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucu8RJ7b8I .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucu8RJ7b8I .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8RJ7b8I .mbr-section-title {
  color: #090f10;
}
.cid-ucu8RJ7b8I .mbr-text {
  color: #000000;
}
.cid-ucu8RJt5zr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1717;
}
.cid-ucu8RJt5zr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RJt5zr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RJt5zr .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ucu8RJt5zr .container-fluid {
    padding: 0 20px;
  }
}
.cid-ucu8RJt5zr .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RJt5zr .container {
    padding: 0 20px;
  }
}
.cid-ucu8RJt5zr .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RJt5zr .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-ucu8RJt5zr .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8RJt5zr .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card {
  border-bottom: 1px solid #fafafa;
  border-radius: 0;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #fafafa;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #fafafa;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-ucu8RJt5zr .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-ucu8RJt5zr .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8RJt5zr .panel-title-edit {
  color: #ffffff;
}
.cid-ucu8RJt5zr .panel-text {
  color: #1d1d1d;
}
.cid-ucu8RK8RNL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ucu8RK8RNL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RK8RNL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RK8RNL .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .container {
    padding: 0 30px;
  }
}
.cid-ucu8RK8RNL .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #1ec50d;
  border-bottom: 10px solid #1ec50d;
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper {
    display: block;
  }
}
.cid-ucu8RK8RNL .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
  margin-right: 0;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper .title-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-ucu8RK8RNL .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucu8RK8RNL .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ucu8RK8RNL .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ucu8RK8RNL .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucu8RK8RNL .mbr-section-title {
  color: #000000;
}
.cid-ucu8RK8RNL .mbr-text {
  color: #000000;
}
.cid-ucu8RKGSzH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #149506;
  position: relative;
}
.cid-ucu8RKGSzH::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #353535, #44cf35);
}
.cid-ucu8RKGSzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RKGSzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucu8RKGSzH .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucu8RKGSzH .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RKGSzH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RKGSzH .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucu8RKGSzH .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucu8RKGSzH .row {
  justify-content: space-between;
}
.cid-ucu8RKGSzH .item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-ucu8RKGSzH .item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.cid-ucu8RKGSzH .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-ucu8RKGSzH .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-ucu8RKGSzH .mbr-section-title {
  color: #ffffff;
}
.cid-ucu8RKGSzH .card-title {
  color: #f4f4f4;
}
.cid-ucu8RKGSzH .card-text {
  color: #c1c1c1;
}
.cid-ucu8RLx6SD {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #c1f3bb;
}
.cid-ucu8RLx6SD .mbr-text {
  color: #000000;
}
.cid-ucu8RLx6SD .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-ucu8RLx6SD .mbr-section-title {
  color: #000000;
}
.cid-ucuw5fP1tZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucuw5fP1tZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucuw5fP1tZ .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-ucuw5fP1tZ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucuw5fP1tZ .container {
    padding: 0 12px;
  }
}
.cid-ucuw5fP1tZ .row {
  justify-content: center;
}
.cid-ucuw5fP1tZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ucuw5fP1tZ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ucuw5fP1tZ .panel-group .card {
  border-radius: 50px;
  border: 3px solid #0a3305;
  box-shadow: 4px 4px #0a3305;
  background-color: #64db57;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucuw5fP1tZ .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-ucuw5fP1tZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-ucuw5fP1tZ .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucuw5fP1tZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucuw5fP1tZ .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #0a3305;
  transition: all 0.3s ease-in-out;
}
.cid-ucuw5fP1tZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-ucuw5fP1tZ .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-ucuw5fP1tZ .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-ucuw5fP1tZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucuw5fP1tZ .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-ucuw5fP1tZ .panel-title-edit {
  color: #222222;
}
.cid-ucuw5fP1tZ .panel-text {
  color: #222222;
}
.cid-ucu8RMjZ3a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #149506;
}
.cid-ucu8RMjZ3a .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RMjZ3a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ucu8RMjZ3a .mbr-section-head {
    text-align: center;
  }
}
.cid-ucu8RMjZ3a .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucu8RMjZ3a .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucu8RMjZ3a .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-ucu8RMjZ3a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucu8RMjZ3a .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucu8RMjZ3a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucu8RN4BCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-ucu8RN4BCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucu8RN4BCr .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-ucu8RN4BCr .container {
    padding: 0 30px;
  }
}
.cid-ucu8RN4BCr .row {
  justify-content: center;
}
.cid-ucu8RN4BCr .content-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .content-wrapper .logo-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .content-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}
.cid-ucu8RN4BCr .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucu8RN4BCr .nav-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8RN4BCr .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap {
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap:hover,
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap:hover::before,
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #71eac6;
  transition: all 0.3s ease-in-out;
}
.cid-ucu8RN4BCr .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8RN4BCr .contacts-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .contacts-wrapper .item-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .mbr-address {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .mbr-address:hover,
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .mbr-address:focus {
  color: #71eac6;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .list .item-wrap:hover,
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .list .item-wrap:focus {
  color: #71eac6;
}
.cid-ucu8RN4BCr .contacts-wrapper .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ucu8RN4BCr .border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #bee0d6;
}
@media (max-width: 992px) {
  .cid-ucu8RN4BCr .border-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucu8RN4BCr .border-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #bee0d6;
}
.cid-ucu8RN4BCr .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-ucu8RN4BCr .mbr-section-title {
  color: #bee0d6;
}
.cid-ucu8RN4BCr .mbr-section-subtitle {
  color: #139dff;
}
.cid-ucu8RN4BCr .list {
  color: #bee0d6;
}
.cid-ucu8RN4BCr .mbr-address {
  color: #bee0d6;
}
.cid-ucu8RN4BCr .mbr-copy {
  color: #0597ff;
}
.cid-ucu8RN4BCr .list,
.cid-ucu8RN4BCr .item-wrap,
.cid-ucu8RN4BCr .nav-wrapper {
  color: #fafafa;
}
