body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.88rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.35rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.504rem;
    font-size: calc( 1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((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: #ddff55 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #e204ec !important;
}
.btn-primary .btn-overlay {
  background-color: #bcd948 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ddff55 !important;
  border-color: #ddff55 !important;
  color: #445500 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #445500 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #95239a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e204ec !important;
  border-color: #e204ec !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #95239a !important;
  border-color: #95239a !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ddff55;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #cbfd00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #445500 !important;
  background-color: #ddff55 !important;
  border-color: #ddff55 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e204ec;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #900397 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e204ec !important;
  border-color: #e204ec !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ddff55 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #e204ec !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #beee00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #820288 !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: #ddff55;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #e204ec;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ddff55;
  border-color: #ddff55;
  color: #586e00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ddff55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbbefe;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ddff55 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ddff55;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ddff55;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ddff55;
}
.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: #ddff55;
  border-bottom-color: #ddff55;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ddff55 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bcd948 !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='%23ddff55' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  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);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  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);
  }
}
.cid-uhCFwWDUSZ {
  background-color: transparent;
}
.cid-uhCFwWDUSZ .navbar-dropdown {
  background-color: #bcd948 !important;
  padding: 0;
}
.cid-uhCFwWDUSZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #bcd948 !important;
  background: #bcd948;
}
.cid-uhCFwWDUSZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhCFwWDUSZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhCFwWDUSZ .menu_box .navbar.opened,
  .cid-uhCFwWDUSZ .menu_box .navbar-collapse {
    background-color: #bcd948 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhCFwWDUSZ .navbar-dropdown {
  position: relative !important;
}
.cid-uhCFwWDUSZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhCFwWDUSZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhCFwWDUSZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhCFwWDUSZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhCFwWDUSZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhCFwWDUSZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas-body .mbr-text,
  .cid-uhCFwWDUSZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhCFwWDUSZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhCFwWDUSZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhCFwWDUSZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhCFwWDUSZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhCFwWDUSZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhCFwWDUSZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhCFwWDUSZ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhCFwWDUSZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhCFwWDUSZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhCFwWDUSZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhCFwWDUSZ .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .nav-item {
    margin: 0 !important;
  }
}
.cid-uhCFwWDUSZ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhCFwWDUSZ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhCFwWDUSZ .nav-item .nav-link:hover::before,
.cid-uhCFwWDUSZ .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhCFwWDUSZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhCFwWDUSZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhCFwWDUSZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhCFwWDUSZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhCFwWDUSZ .offcanvas_box {
    display: none;
  }
}
.cid-uhCFwWDUSZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhCFwWDUSZ .container {
  display: flex;
  margin: auto;
}
.cid-uhCFwWDUSZ .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhCFwWDUSZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhCFwWDUSZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhCFwWDUSZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .navbar-nav {
    margin: 0;
  }
}
.cid-uhCFwWDUSZ .dropdown-menu,
.cid-uhCFwWDUSZ .navbar.opened {
  background-color: false !important;
}
.cid-uhCFwWDUSZ .nav-item:focus,
.cid-uhCFwWDUSZ .nav-link:focus {
  outline: none;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhCFwWDUSZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhCFwWDUSZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhCFwWDUSZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhCFwWDUSZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhCFwWDUSZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhCFwWDUSZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uhCFwWDUSZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhCFwWDUSZ .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhCFwWDUSZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhCFwWDUSZ .navbar.collapsed {
  justify-content: center;
}
.cid-uhCFwWDUSZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhCFwWDUSZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhCFwWDUSZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhCFwWDUSZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhCFwWDUSZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhCFwWDUSZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhCFwWDUSZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhCFwWDUSZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhCFwWDUSZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhCFwWDUSZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhCFwWDUSZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhCFwWDUSZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhCFwWDUSZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhCFwWDUSZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhCFwWDUSZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhCFwWDUSZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhCFwWDUSZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhCFwWDUSZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhCFwWDUSZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhCFwWDUSZ .dropdown-item.active,
.cid-uhCFwWDUSZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhCFwWDUSZ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhCFwWDUSZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhCFwWDUSZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhCFwWDUSZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhCFwWDUSZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhCFwWDUSZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #bcd948;
  background: #ffffff;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCFwWDUSZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhCFwWDUSZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCFwWDUSZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhCFwWDUSZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhCFwWDUSZ .navbar {
    height: 70px;
  }
  .cid-uhCFwWDUSZ .navbar.opened {
    height: auto;
  }
  .cid-uhCFwWDUSZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhCFwWDUSZ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhCFwWDUSZ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhCFwWDUSZ .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhCFwWDUSZ .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhCFwWDUSZ .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhCFwWDUSZ .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhCFwWDUSZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhCFwWDUSZ .text_widget {
  margin-bottom: 32px;
}
.cid-uhCFwWDUSZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhCFwWDUSZ .text_widget a:hover,
.cid-uhCFwWDUSZ .text_widget a:focus {
  opacity: .8;
}
.cid-uhCFwWDUSZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhCFwWDUSZ .navbar-caption {
  color: #202020;
}
.cid-uhCFwWDUSZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhCFwWDUSZ .mbr-section-subtitle,
.cid-uhCFwWDUSZ .text_widget,
.cid-uhCFwWDUSZ .mbr-section-btn {
  text-align: center;
}
.cid-uhCFwWDUSZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-t2Yqo54WUQ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-t2Yqo54WUQ .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-t2Yqo54WUQ .mbr-section-title {
  color: #f3f4ef;
}
.cid-t2Yqo54WUQ .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-t2Yqo54WUQ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-t2Yqo54WUQ .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-t2Yqo54WUQ .mbr-section-title,
.cid-t2Yqo54WUQ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t2YqKJRU1R {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-t2YqKJRU1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2YqKJRU1R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2YqKJRU1R .col-img {
  display: flex;
  flex-direction: column;
}
.cid-t2YqKJRU1R .mbr-description {
  color: #f3f4ef;
}
.cid-t2YqKJRU1R .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-t2YqKJRU1R .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhCNNIbecd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhCNNIbecd .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhCNNIbecd .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhCNNIbecd .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhCNNIbecd .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhCNNIbecd .mbr-text {
  color: #000000;
}
.cid-uhDJtygGh5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDJtygGh5 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDJtygGh5 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDJtygGh5 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDJtygGh5 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDJtygGh5 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDJtygGh5 .mbr-text {
  color: #606060;
}
.cid-uhDJtygGh5 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDJtygGh5 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDJtygGh5 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDJtygGh5 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDJtygGh5 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDJtygGh5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDJtygGh5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDJtygGh5 .mbr-text,
.cid-uhDJtygGh5 .mbr-section-btn {
  color: #000000;
}
.cid-t2Yw5Poxqr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-t2Yw5Poxqr .row {
  align-items: center;
  width: 100%;
}
.cid-t2Yw5Poxqr .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2Yw5Poxqr .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2Yw5Poxqr .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2Yw5Poxqr .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2Yw5Poxqr .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2Yw5Poxqr .content-container {
    padding: 2rem !important;
  }
}
.cid-t2Yw5Poxqr .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2Yw5Poxqr .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .img-container {
    padding-left: 0;
  }
}
.cid-t2Yw5Poxqr .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2Yw5Poxqr .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2Yw5Poxqr .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .text-container {
    padding-right: 0;
  }
}
.cid-t2Yw5Poxqr .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2Yw5Poxqr .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2Yw5Poxqr .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2Yw5Poxqr .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-t2Yw5Poxqr .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-t2YrRMp191 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-t2YrRMp191 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YrRMp191 .mbr-section-title {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YrRMp191 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YrRMp191 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-t2YrRMp191 .text-container {
    padding: 24px;
  }
}
.cid-t2YrRMp191 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YrRMp191 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YrRMp191 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-t2YrRMp191 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YrRMp191 .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-t2Ysitd0Ln {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/horizon-west-bounce-house-rentals-2-1533x646.jpg");
}
.cid-t2Ysitd0Ln .mbr-overlay {
  background: #010101;
  opacity: 0.6;
}
.cid-t2Ysitd0Ln .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-t2Ysitd0Ln .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t2Ysitd0Ln .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-t2Ysitd0Ln .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t2Yv7si76x {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #bcd948;
}
.cid-t2Yv7si76x .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2Yv7si76x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2Yv7si76x .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .row {
    flex-wrap: wrap;
  }
}
.cid-t2Yv7si76x .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t2Yv7si76x .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #bcd948;
}
@media (max-width: 991px) {
  .cid-t2Yv7si76x .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-t2Yv7si76x .img-container img {
  max-width: 100%;
}
.cid-t2Yv7si76x .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-t2Yv7si76x .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-t2Yv7si76x .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-t2Yv7si76x .section-head {
  margin-bottom: 0;
}
.cid-t2Yv7si76x .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .toggle-panel {
  margin-top: 40px;
}
.cid-t2Yv7si76x .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-t2Yv7si76x .card:hover {
  margin-left: 1rem;
}
.cid-t2Yv7si76x .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-t2Yv7si76x .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-t2Yv7si76x .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-t2Yv7si76x .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #010101;
  transition: .3s all;
}
.cid-t2Yv7si76x .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-t2Yv7si76x .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-t2Yv7si76x .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-t2Yv7si76x .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2Yv7si76x .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhCQF8UAL8 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhCQF8UAL8 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhCQF8UAL8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhCQF8UAL8 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhCQF8UAL8 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhCQbpVlXS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #bcd948;
}
.cid-uhCQbpVlXS .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhCQbpVlXS .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhCQbpVlXS .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhCQbpVlXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCQbpVlXS .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-uhCQbpVlXS .container {
    padding: 0 30px;
  }
}
.cid-uhCQbpVlXS .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhCQbpVlXS .image-wrapper {
  background-color: #ffffff;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhCQbpVlXS .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhCQbpVlXS .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhCQbpVlXS .image-wrapper img {
    height: 350px;
  }
}
.cid-uhCQE8sEQe {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhCQE8sEQe .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhCQE8sEQe .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhCQE8sEQe .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhCQE8sEQe .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-t2YzETSBMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-t2YzETSBMU .row {
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YzETSBMU .mbr-section-title {
  color: #000000;
}
.cid-t2YzETSBMU .mbr-section-subtitle {
  color: #000000;
}
.cid-t2YzETSBMU .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YzETSBMU .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YzETSBMU .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-t2YzETSBMU .text-container {
    padding: 24px;
  }
}
.cid-t2YzETSBMU .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YzETSBMU .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YzETSBMU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-t2YzETSBMU .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YzETSBMU .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-t2YAlgpBU0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-t2YAlgpBU0 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YAlgpBU0 .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #bcd948;
}
@media (max-width: 767px) {
  .cid-t2YAlgpBU0 .content-container {
    flex-direction: column-reverse;
  }
}
.cid-t2YAlgpBU0 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 55%;
}
@media (max-width: 767px) {
  .cid-t2YAlgpBU0 .col-text {
    max-width: 100%;
  }
}
.cid-t2YAlgpBU0 .text-container {
  padding: 40px;
}
@media (max-width: 991px) {
  .cid-t2YAlgpBU0 .text-container {
    padding: 24px;
  }
}
.cid-t2YAlgpBU0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YAlgpBU0 .label-text {
  width: 100%;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.4;
}
.cid-t2YAlgpBU0 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 8px;
}
.cid-t2YAlgpBU0 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2YAlgpBU0 .btn-container {
  width: 100%;
}
.cid-t2YAlgpBU0 .mbr-section-btn {
  margin-top: 22px;
}
.cid-t2YAlgpBU0 .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-t2YAlgpBU0 .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-t2YAlgpBU0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t2YAlgpBU0 .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-t2YAlgpBU0 .col-img {
  width: 100%;
  max-width: 45%;
}
@media (max-width: 767px) {
  .cid-t2YAlgpBU0 .col-img {
    max-width: 100%;
  }
}
.cid-t2YAlgpBU0 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.cid-t2YAlgpBU0 .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-uhVMxQvdBN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhVMxQvdBN blockquote {
  border-color: #131313;
  border-radius: 4px;
  background-color: #bcd948;
}
.cid-uhVMxQvdBN .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhDS60R6i6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDS60R6i6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDS60R6i6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDS60R6i6 .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-uhDS60R6i6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDS60R6i6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCGutKGAR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhCGutKGAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCGutKGAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCGutKGAR .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhCGutKGAR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhCGutKGAR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhCGutKGAR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhCGutKGAR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhCGutKGAR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhCGutKGAR .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhCGutKGAR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhCGutKGAR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhCGutKGAR .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhCGutKGAR .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhCGutKGAR .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhCGutKGAR .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhCGutKGAR .list li {
  transition: 0.5s all;
}
.cid-uhCGutKGAR .list li:hover {
  opacity: 0.6;
}
.cid-uhCGutKGAR .item-wrap {
  margin-bottom: 12px;
}
.cid-uhCGutKGAR .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhCGutKGAR .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhCGutKGAR .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhCGutKGAR .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhCGutKGAR .copyright-col {
    text-align: center;
  }
}
.cid-uhCGutKGAR .copyright {
  color: #000000;
}
.cid-uhDV9GR1HI {
  background-color: transparent;
}
.cid-uhDV9GR1HI .navbar-dropdown {
  background-color: #fffa76 !important;
  padding: 0;
}
.cid-uhDV9GR1HI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fffa76 !important;
  background: #fffa76;
}
.cid-uhDV9GR1HI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhDV9GR1HI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhDV9GR1HI .menu_box .navbar.opened,
  .cid-uhDV9GR1HI .menu_box .navbar-collapse {
    background-color: #fffa76 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhDV9GR1HI .navbar-dropdown {
  position: relative !important;
}
.cid-uhDV9GR1HI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhDV9GR1HI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhDV9GR1HI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhDV9GR1HI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhDV9GR1HI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhDV9GR1HI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhDV9GR1HI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhDV9GR1HI .offcanvas-body .mbr-text,
  .cid-uhDV9GR1HI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhDV9GR1HI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhDV9GR1HI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhDV9GR1HI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhDV9GR1HI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDV9GR1HI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhDV9GR1HI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhDV9GR1HI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhDV9GR1HI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhDV9GR1HI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhDV9GR1HI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhDV9GR1HI .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .nav-item {
    margin: 0 !important;
  }
}
.cid-uhDV9GR1HI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhDV9GR1HI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhDV9GR1HI .nav-item .nav-link:hover::before,
.cid-uhDV9GR1HI .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhDV9GR1HI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhDV9GR1HI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDV9GR1HI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhDV9GR1HI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhDV9GR1HI .offcanvas_box {
    display: none;
  }
}
.cid-uhDV9GR1HI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhDV9GR1HI .container {
  display: flex;
  margin: auto;
}
.cid-uhDV9GR1HI .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhDV9GR1HI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhDV9GR1HI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhDV9GR1HI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .navbar-nav {
    margin: 0;
  }
}
.cid-uhDV9GR1HI .dropdown-menu,
.cid-uhDV9GR1HI .navbar.opened {
  background-color: false !important;
}
.cid-uhDV9GR1HI .nav-item:focus,
.cid-uhDV9GR1HI .nav-link:focus {
  outline: none;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhDV9GR1HI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhDV9GR1HI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhDV9GR1HI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhDV9GR1HI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhDV9GR1HI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhDV9GR1HI .navbar.opened {
  transition: all 0.3s;
}
.cid-uhDV9GR1HI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhDV9GR1HI .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhDV9GR1HI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhDV9GR1HI .navbar.collapsed {
  justify-content: center;
}
.cid-uhDV9GR1HI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhDV9GR1HI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhDV9GR1HI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhDV9GR1HI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhDV9GR1HI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhDV9GR1HI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhDV9GR1HI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhDV9GR1HI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhDV9GR1HI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhDV9GR1HI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhDV9GR1HI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhDV9GR1HI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhDV9GR1HI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhDV9GR1HI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhDV9GR1HI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhDV9GR1HI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhDV9GR1HI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhDV9GR1HI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhDV9GR1HI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhDV9GR1HI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhDV9GR1HI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhDV9GR1HI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDV9GR1HI .dropdown-item.active,
.cid-uhDV9GR1HI .dropdown-item:active {
  background-color: transparent;
}
.cid-uhDV9GR1HI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhDV9GR1HI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhDV9GR1HI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhDV9GR1HI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhDV9GR1HI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhDV9GR1HI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fffa76;
  background: #ffffff;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDV9GR1HI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhDV9GR1HI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDV9GR1HI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhDV9GR1HI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhDV9GR1HI .navbar {
    height: 70px;
  }
  .cid-uhDV9GR1HI .navbar.opened {
    height: auto;
  }
  .cid-uhDV9GR1HI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDV9GR1HI .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhDV9GR1HI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhDV9GR1HI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhDV9GR1HI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhDV9GR1HI .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhDV9GR1HI .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhDV9GR1HI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhDV9GR1HI .text_widget {
  margin-bottom: 32px;
}
.cid-uhDV9GR1HI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhDV9GR1HI .text_widget a:hover,
.cid-uhDV9GR1HI .text_widget a:focus {
  opacity: .8;
}
.cid-uhDV9GR1HI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhDV9GR1HI .navbar-caption {
  color: #202020;
}
.cid-uhDV9GR1HI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhDV9GR1HI .mbr-section-subtitle,
.cid-uhDV9GR1HI .text_widget,
.cid-uhDV9GR1HI .mbr-section-btn {
  text-align: center;
}
.cid-uhDV9GR1HI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhDV9Iv6cc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-uhDV9Iv6cc .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDV9Iv6cc .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhDV9Iv6cc .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-uhDV9Iv6cc .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-uhDV9Iv6cc .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-uhDV9Iv6cc .mbr-section-title,
.cid-uhDV9Iv6cc .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhDV9JyhZz {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-uhDV9JyhZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9JyhZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDV9JyhZz .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uhDV9JyhZz .mbr-description {
  color: #f3f4ef;
}
.cid-uhDV9JyhZz .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uhDV9JyhZz .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhDV9LkfL9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDV9LkfL9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDV9LkfL9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDV9LkfL9 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDV9LkfL9 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDV9LkfL9 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDV9LkfL9 .mbr-text {
  color: #606060;
}
.cid-uhDV9LkfL9 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDV9LkfL9 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDV9LkfL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9LkfL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDV9LkfL9 .mbr-text,
.cid-uhDV9LkfL9 .mbr-section-btn {
  color: #000000;
}
.cid-uhDV9ZodSZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDV9ZodSZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDV9ZodSZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDV9ZodSZ .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-uhDV9ZodSZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDV9ZodSZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVa0I5qq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDVa0I5qq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVa0I5qq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVa0I5qq .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhDVa0I5qq .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhDVa0I5qq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVa0I5qq .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhDVa0I5qq .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhDVa0I5qq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhDVa0I5qq .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhDVa0I5qq .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhDVa0I5qq .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhDVa0I5qq .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhDVa0I5qq .list li {
  transition: 0.5s all;
}
.cid-uhDVa0I5qq .list li:hover {
  opacity: 0.6;
}
.cid-uhDVa0I5qq .item-wrap {
  margin-bottom: 12px;
}
.cid-uhDVa0I5qq .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhDVa0I5qq .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhDVa0I5qq .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhDVa0I5qq .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhDVa0I5qq .copyright-col {
    text-align: center;
  }
}
.cid-uhDVa0I5qq .copyright {
  color: #000000;
}
.cid-uhDWbfvUVO {
  background-color: transparent;
}
.cid-uhDWbfvUVO .navbar-dropdown {
  background-color: #fffa76 !important;
  padding: 0;
}
.cid-uhDWbfvUVO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fffa76 !important;
  background: #fffa76;
}
.cid-uhDWbfvUVO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhDWbfvUVO .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhDWbfvUVO .menu_box .navbar.opened,
  .cid-uhDWbfvUVO .menu_box .navbar-collapse {
    background-color: #fffa76 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhDWbfvUVO .navbar-dropdown {
  position: relative !important;
}
.cid-uhDWbfvUVO .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhDWbfvUVO .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhDWbfvUVO .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhDWbfvUVO .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhDWbfvUVO .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhDWbfvUVO .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhDWbfvUVO .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhDWbfvUVO .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhDWbfvUVO .offcanvas-body .mbr-text,
  .cid-uhDWbfvUVO .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhDWbfvUVO .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhDWbfvUVO .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhDWbfvUVO ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhDWbfvUVO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDWbfvUVO .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhDWbfvUVO .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhDWbfvUVO li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhDWbfvUVO .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhDWbfvUVO .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhDWbfvUVO .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhDWbfvUVO .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .nav-item {
    margin: 0 !important;
  }
}
.cid-uhDWbfvUVO .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhDWbfvUVO .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhDWbfvUVO .nav-item .nav-link:hover::before,
.cid-uhDWbfvUVO .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhDWbfvUVO .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhDWbfvUVO .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhDWbfvUVO .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDWbfvUVO .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhDWbfvUVO .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhDWbfvUVO .offcanvas_box {
    display: none;
  }
}
.cid-uhDWbfvUVO .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhDWbfvUVO .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhDWbfvUVO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhDWbfvUVO .container {
  display: flex;
  margin: auto;
}
.cid-uhDWbfvUVO .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhDWbfvUVO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhDWbfvUVO .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhDWbfvUVO .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhDWbfvUVO .navbar-nav {
    margin: 0;
  }
}
.cid-uhDWbfvUVO .dropdown-menu,
.cid-uhDWbfvUVO .navbar.opened {
  background-color: false !important;
}
.cid-uhDWbfvUVO .nav-item:focus,
.cid-uhDWbfvUVO .nav-link:focus {
  outline: none;
}
.cid-uhDWbfvUVO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhDWbfvUVO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhDWbfvUVO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhDWbfvUVO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhDWbfvUVO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhDWbfvUVO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhDWbfvUVO .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhDWbfvUVO .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhDWbfvUVO .navbar.opened {
  transition: all 0.3s;
}
.cid-uhDWbfvUVO .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhDWbfvUVO .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhDWbfvUVO .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhDWbfvUVO .navbar.collapsed {
  justify-content: center;
}
.cid-uhDWbfvUVO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhDWbfvUVO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhDWbfvUVO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhDWbfvUVO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhDWbfvUVO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhDWbfvUVO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhDWbfvUVO .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhDWbfvUVO .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhDWbfvUVO .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhDWbfvUVO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhDWbfvUVO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhDWbfvUVO .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhDWbfvUVO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhDWbfvUVO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhDWbfvUVO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhDWbfvUVO .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhDWbfvUVO .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhDWbfvUVO .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhDWbfvUVO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhDWbfvUVO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhDWbfvUVO .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhDWbfvUVO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhDWbfvUVO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhDWbfvUVO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhDWbfvUVO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhDWbfvUVO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhDWbfvUVO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDWbfvUVO .dropdown-item.active,
.cid-uhDWbfvUVO .dropdown-item:active {
  background-color: transparent;
}
.cid-uhDWbfvUVO .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhDWbfvUVO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhDWbfvUVO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhDWbfvUVO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhDWbfvUVO ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhDWbfvUVO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhDWbfvUVO button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fffa76;
  background: #ffffff;
}
.cid-uhDWbfvUVO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhDWbfvUVO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhDWbfvUVO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDWbfvUVO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDWbfvUVO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhDWbfvUVO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDWbfvUVO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhDWbfvUVO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhDWbfvUVO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDWbfvUVO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhDWbfvUVO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhDWbfvUVO .navbar {
    height: 70px;
  }
  .cid-uhDWbfvUVO .navbar.opened {
    height: auto;
  }
  .cid-uhDWbfvUVO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDWbfvUVO .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhDWbfvUVO .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhDWbfvUVO .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhDWbfvUVO .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhDWbfvUVO .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhDWbfvUVO .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhDWbfvUVO .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhDWbfvUVO .text_widget {
  margin-bottom: 32px;
}
.cid-uhDWbfvUVO .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhDWbfvUVO .text_widget a:hover,
.cid-uhDWbfvUVO .text_widget a:focus {
  opacity: .8;
}
.cid-uhDWbfvUVO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhDWbfvUVO .navbar-caption {
  color: #202020;
}
.cid-uhDWbfvUVO .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhDWbfvUVO .mbr-section-subtitle,
.cid-uhDWbfvUVO .text_widget,
.cid-uhDWbfvUVO .mbr-section-btn {
  text-align: center;
}
.cid-uhDWbfvUVO a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhDWbgP6Lp {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-uhDWbgP6Lp .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDWbgP6Lp .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhDWbgP6Lp .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-uhDWbgP6Lp .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-uhDWbgP6Lp .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-uhDWbgP6Lp .mbr-section-title,
.cid-uhDWbgP6Lp .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhDWbhP1op {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-uhDWbhP1op .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWbhP1op .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDWbhP1op .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uhDWbhP1op .mbr-description {
  color: #f3f4ef;
}
.cid-uhDWbhP1op .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uhDWbhP1op .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhDWbj0G6z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDWbj0G6z .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhDWbj0G6z .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhDWbj0G6z .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhDWbj0G6z .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhDWbj0G6z .mbr-text {
  color: #000000;
}
.cid-uhDWbk0qw5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDWbk0qw5 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDWbk0qw5 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDWbk0qw5 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDWbk0qw5 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDWbk0qw5 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDWbk0qw5 .mbr-text {
  color: #606060;
}
.cid-uhDWbk0qw5 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDWbk0qw5 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDWbk0qw5 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDWbk0qw5 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDWbk0qw5 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDWbk0qw5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWbk0qw5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDWbk0qw5 .mbr-text,
.cid-uhDWbk0qw5 .mbr-section-btn {
  color: #000000;
}
.cid-uhDWblIJ2s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDWblIJ2s .row {
  align-items: center;
  width: 100%;
}
.cid-uhDWblIJ2s .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhDWblIJ2s .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-uhDWblIJ2s .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-uhDWblIJ2s .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uhDWblIJ2s .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-uhDWblIJ2s .content-container {
    padding: 2rem !important;
  }
}
.cid-uhDWblIJ2s .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-uhDWblIJ2s .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .img-container {
    padding-left: 0;
  }
}
.cid-uhDWblIJ2s .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-uhDWblIJ2s .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-uhDWblIJ2s .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhDWblIJ2s .text-container {
    padding-right: 0;
  }
}
.cid-uhDWblIJ2s .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhDWblIJ2s .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-uhDWblIJ2s .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-uhDWblIJ2s .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-uhDWblIJ2s .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-uhDWbmCfR4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhDWbmCfR4 .row {
  align-items: center;
  width: 100%;
}
.cid-uhDWbmCfR4 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhDWbmCfR4 .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhDWbmCfR4 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhDWbmCfR4 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhDWbmCfR4 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhDWbmCfR4 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhDWbmCfR4 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhDWbmCfR4 .text-container {
    padding: 24px;
  }
}
.cid-uhDWbmCfR4 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhDWbmCfR4 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhDWbmCfR4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhDWbmCfR4 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhDWbmCfR4 .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEchoZm2N {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhEchoZm2N .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhEchoZm2N .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhEchoZm2N .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhEchoZm2N .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhDWboG2dm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #bcd948;
}
.cid-uhDWboG2dm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWboG2dm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDWboG2dm .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhDWboG2dm .row {
    flex-wrap: wrap;
  }
}
.cid-uhDWboG2dm .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhDWboG2dm .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhDWboG2dm .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #bcd948;
}
@media (max-width: 991px) {
  .cid-uhDWboG2dm .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhDWboG2dm .img-container img {
  max-width: 100%;
}
.cid-uhDWboG2dm .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhDWboG2dm .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhDWboG2dm .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhDWboG2dm .section-head {
  margin-bottom: 0;
}
.cid-uhDWboG2dm .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhDWboG2dm .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhDWboG2dm .toggle-panel {
  margin-top: 40px;
}
.cid-uhDWboG2dm .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhDWboG2dm .card:hover {
  margin-left: 1rem;
}
.cid-uhDWboG2dm .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhDWboG2dm .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhDWboG2dm .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhDWboG2dm .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #010101;
  transition: .3s all;
}
.cid-uhDWboG2dm .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhDWboG2dm .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhDWboG2dm .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhDWboG2dm .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhDWboG2dm .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhE0T7c9Qn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-uhE0T7c9Qn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE0T7c9Qn .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-uhE0T7c9Qn .container {
    padding: 0 20px;
  }
}
.cid-uhE0T7c9Qn .row {
  margin: 0;
}
.cid-uhE0T7c9Qn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhE0T7c9Qn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhE0T7c9Qn .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uhE0T7c9Qn .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uhE0T7c9Qn .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uhE0T7c9Qn .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uhE0T7c9Qn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhDWbq183b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhDWbq183b .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDWbq183b .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhDWbq183b .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhDWbq183b .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhDWbr0XZC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #bcd948;
}
.cid-uhDWbr0XZC .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhDWbr0XZC .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhDWbr0XZC .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhDWbr0XZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWbr0XZC .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-uhDWbr0XZC .container {
    padding: 0 30px;
  }
}
.cid-uhDWbr0XZC .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhDWbr0XZC .image-wrapper {
  background-color: #ffffff;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhDWbr0XZC .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhDWbr0XZC .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhDWbr0XZC .image-wrapper img {
    height: 350px;
  }
}
.cid-uhDWbs2Mjp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhDWbs2Mjp .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDWbs2Mjp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhDWbs2Mjp .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhDWbs2Mjp .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhDWbt2QYc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDWbt2QYc .row {
  align-items: center;
  width: 100%;
}
.cid-uhDWbt2QYc .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhDWbt2QYc .mbr-section-title {
  color: #000000;
}
.cid-uhDWbt2QYc .mbr-section-subtitle {
  color: #000000;
}
.cid-uhDWbt2QYc .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhDWbt2QYc .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhDWbt2QYc .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhDWbt2QYc .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhDWbt2QYc .text-container {
    padding: 24px;
  }
}
.cid-uhDWbt2QYc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhDWbt2QYc .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhDWbt2QYc .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhDWbt2QYc .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhDWbt2QYc .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhDWbus8dj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhDWbus8dj .row {
  align-items: center;
  width: 100%;
}
.cid-uhDWbus8dj .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #bcd948;
}
@media (max-width: 767px) {
  .cid-uhDWbus8dj .content-container {
    flex-direction: column-reverse;
  }
}
.cid-uhDWbus8dj .col-text {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 55%;
}
@media (max-width: 767px) {
  .cid-uhDWbus8dj .col-text {
    max-width: 100%;
  }
}
.cid-uhDWbus8dj .text-container {
  padding: 40px;
}
@media (max-width: 991px) {
  .cid-uhDWbus8dj .text-container {
    padding: 24px;
  }
}
.cid-uhDWbus8dj .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhDWbus8dj .label-text {
  width: 100%;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.4;
}
.cid-uhDWbus8dj .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 8px;
}
.cid-uhDWbus8dj .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-uhDWbus8dj .btn-container {
  width: 100%;
}
.cid-uhDWbus8dj .mbr-section-btn {
  margin-top: 22px;
}
.cid-uhDWbus8dj .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-uhDWbus8dj .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-uhDWbus8dj .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uhDWbus8dj .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-uhDWbus8dj .col-img {
  width: 100%;
  max-width: 45%;
}
@media (max-width: 767px) {
  .cid-uhDWbus8dj .col-img {
    max-width: 100%;
  }
}
.cid-uhDWbus8dj .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.cid-uhDWbus8dj .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-uhDWbvudRq {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhDWbvudRq .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDWbvudRq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhDWbvudRq .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhDWbvudRq .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE6OaCMw4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE6OaCMw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE6OaCMw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE6OaCMw4 .row {
  justify-content: space-between;
}
.cid-uhE6OaCMw4 .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhE6OaCMw4 .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhE6OaCMw4 .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card:hover::before,
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhE6OaCMw4 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhE6OaCMw4 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhE6OaCMw4 .mbr-desc {
  color: #000000;
}
.cid-uhE6OaCMw4 .panel-title-edit {
  color: #000000;
}
.cid-uhE6OaCMw4 .list {
  color: #000000;
}
.cid-uhDWbwuU6K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDWbwuU6K .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDWbwuU6K .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDWbwuU6K .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-uhDWbwuU6K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDWbwuU6K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDWbwuU6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWbwuU6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDWbxxCcR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDWbxxCcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDWbxxCcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDWbxxCcR .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhDWbxxCcR .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhDWbxxCcR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhDWbxxCcR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhDWbxxCcR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhDWbxxCcR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhDWbxxCcR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDWbxxCcR .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhDWbxxCcR .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhDWbxxCcR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhDWbxxCcR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhDWbxxCcR .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhDWbxxCcR .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhDWbxxCcR .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhDWbxxCcR .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhDWbxxCcR .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhDWbxxCcR .list li {
  transition: 0.5s all;
}
.cid-uhDWbxxCcR .list li:hover {
  opacity: 0.6;
}
.cid-uhDWbxxCcR .item-wrap {
  margin-bottom: 12px;
}
.cid-uhDWbxxCcR .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhDWbxxCcR .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhDWbxxCcR .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhDWbxxCcR .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhDWbxxCcR .copyright-col {
    text-align: center;
  }
}
.cid-uhDWbxxCcR .copyright {
  color: #000000;
}
.cid-uhE2h42IzE {
  background-color: transparent;
}
.cid-uhE2h42IzE .navbar-dropdown {
  background-color: #fffa76 !important;
  padding: 0;
}
.cid-uhE2h42IzE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fffa76 !important;
  background: #fffa76;
}
.cid-uhE2h42IzE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhE2h42IzE .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhE2h42IzE .menu_box .navbar.opened,
  .cid-uhE2h42IzE .menu_box .navbar-collapse {
    background-color: #fffa76 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhE2h42IzE .navbar-dropdown {
  position: relative !important;
}
.cid-uhE2h42IzE .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhE2h42IzE .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhE2h42IzE .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhE2h42IzE .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhE2h42IzE .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhE2h42IzE .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhE2h42IzE .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhE2h42IzE .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhE2h42IzE .offcanvas-body .mbr-text,
  .cid-uhE2h42IzE .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhE2h42IzE .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhE2h42IzE .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhE2h42IzE ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhE2h42IzE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhE2h42IzE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhE2h42IzE .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhE2h42IzE li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhE2h42IzE .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhE2h42IzE .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhE2h42IzE .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhE2h42IzE .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .nav-item {
    margin: 0 !important;
  }
}
.cid-uhE2h42IzE .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhE2h42IzE .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhE2h42IzE .nav-item .nav-link:hover::before,
.cid-uhE2h42IzE .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhE2h42IzE .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhE2h42IzE .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhE2h42IzE .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhE2h42IzE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhE2h42IzE .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhE2h42IzE .offcanvas_box {
    display: none;
  }
}
.cid-uhE2h42IzE .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhE2h42IzE .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhE2h42IzE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhE2h42IzE .container {
  display: flex;
  margin: auto;
}
.cid-uhE2h42IzE .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhE2h42IzE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhE2h42IzE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhE2h42IzE .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhE2h42IzE .navbar-nav {
    margin: 0;
  }
}
.cid-uhE2h42IzE .dropdown-menu,
.cid-uhE2h42IzE .navbar.opened {
  background-color: false !important;
}
.cid-uhE2h42IzE .nav-item:focus,
.cid-uhE2h42IzE .nav-link:focus {
  outline: none;
}
.cid-uhE2h42IzE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhE2h42IzE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhE2h42IzE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhE2h42IzE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhE2h42IzE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhE2h42IzE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhE2h42IzE .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhE2h42IzE .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhE2h42IzE .navbar.opened {
  transition: all 0.3s;
}
.cid-uhE2h42IzE .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhE2h42IzE .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhE2h42IzE .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhE2h42IzE .navbar.collapsed {
  justify-content: center;
}
.cid-uhE2h42IzE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhE2h42IzE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhE2h42IzE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhE2h42IzE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhE2h42IzE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhE2h42IzE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhE2h42IzE .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhE2h42IzE .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhE2h42IzE .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhE2h42IzE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhE2h42IzE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhE2h42IzE .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhE2h42IzE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhE2h42IzE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhE2h42IzE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhE2h42IzE .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhE2h42IzE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhE2h42IzE .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhE2h42IzE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhE2h42IzE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhE2h42IzE .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhE2h42IzE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhE2h42IzE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhE2h42IzE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhE2h42IzE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhE2h42IzE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhE2h42IzE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhE2h42IzE .dropdown-item.active,
.cid-uhE2h42IzE .dropdown-item:active {
  background-color: transparent;
}
.cid-uhE2h42IzE .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhE2h42IzE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhE2h42IzE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhE2h42IzE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhE2h42IzE ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhE2h42IzE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhE2h42IzE button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fffa76;
  background: #ffffff;
}
.cid-uhE2h42IzE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhE2h42IzE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhE2h42IzE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhE2h42IzE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhE2h42IzE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhE2h42IzE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhE2h42IzE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhE2h42IzE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhE2h42IzE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhE2h42IzE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhE2h42IzE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhE2h42IzE .navbar {
    height: 70px;
  }
  .cid-uhE2h42IzE .navbar.opened {
    height: auto;
  }
  .cid-uhE2h42IzE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhE2h42IzE .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhE2h42IzE .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhE2h42IzE .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhE2h42IzE .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhE2h42IzE .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhE2h42IzE .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhE2h42IzE .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhE2h42IzE .text_widget {
  margin-bottom: 32px;
}
.cid-uhE2h42IzE .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhE2h42IzE .text_widget a:hover,
.cid-uhE2h42IzE .text_widget a:focus {
  opacity: .8;
}
.cid-uhE2h42IzE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhE2h42IzE .navbar-caption {
  color: #202020;
}
.cid-uhE2h42IzE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhE2h42IzE .mbr-section-subtitle,
.cid-uhE2h42IzE .text_widget,
.cid-uhE2h42IzE .mbr-section-btn {
  text-align: center;
}
.cid-uhE2h42IzE a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhE2h6QtK4 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-uhE2h6QtK4 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE2h6QtK4 .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhE2h6QtK4 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-uhE2h6QtK4 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-uhE2h6QtK4 .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-uhE2h6QtK4 .mbr-section-title,
.cid-uhE2h6QtK4 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhE2h84F8F {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-uhE2h84F8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2h84F8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE2h84F8F .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uhE2h84F8F .mbr-description {
  color: #f3f4ef;
}
.cid-uhE2h84F8F .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uhE2h84F8F .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhE2h9n63J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE2h9n63J .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhE2h9n63J .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhE2h9n63J .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhE2h9n63J .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhE2h9n63J .mbr-text {
  color: #000000;
}
.cid-uhE2hamNFK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhE2hamNFK .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhE2hamNFK .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhE2hamNFK .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhE2hamNFK .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhE2hamNFK .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhE2hamNFK .mbr-text {
  color: #606060;
}
.cid-uhE2hamNFK .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhE2hamNFK .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhE2hamNFK .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhE2hamNFK .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhE2hamNFK .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhE2hamNFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2hamNFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE2hamNFK .mbr-text,
.cid-uhE2hamNFK .mbr-section-btn {
  color: #000000;
}
.cid-uhE2hbxQ37 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE2hbxQ37 .row {
  align-items: center;
  width: 100%;
}
.cid-uhE2hbxQ37 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE2hbxQ37 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-uhE2hbxQ37 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-uhE2hbxQ37 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uhE2hbxQ37 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-uhE2hbxQ37 .content-container {
    padding: 2rem !important;
  }
}
.cid-uhE2hbxQ37 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-uhE2hbxQ37 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .img-container {
    padding-left: 0;
  }
}
.cid-uhE2hbxQ37 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-uhE2hbxQ37 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-uhE2hbxQ37 .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhE2hbxQ37 .text-container {
    padding-right: 0;
  }
}
.cid-uhE2hbxQ37 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE2hbxQ37 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-uhE2hbxQ37 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-uhE2hbxQ37 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-uhE2hbxQ37 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-uhE2hdhFX5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhE2hdhFX5 .row {
  align-items: center;
  width: 100%;
}
.cid-uhE2hdhFX5 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE2hdhFX5 .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhE2hdhFX5 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhE2hdhFX5 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE2hdhFX5 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhE2hdhFX5 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhE2hdhFX5 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhE2hdhFX5 .text-container {
    padding: 24px;
  }
}
.cid-uhE2hdhFX5 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE2hdhFX5 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhE2hdhFX5 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhE2hdhFX5 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhE2hdhFX5 .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhE2heFRW6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #bcd948;
}
.cid-uhE2heFRW6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2heFRW6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE2heFRW6 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhE2heFRW6 .row {
    flex-wrap: wrap;
  }
}
.cid-uhE2heFRW6 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE2heFRW6 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhE2heFRW6 .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #bcd948;
}
@media (max-width: 991px) {
  .cid-uhE2heFRW6 .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhE2heFRW6 .img-container img {
  max-width: 100%;
}
.cid-uhE2heFRW6 .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhE2heFRW6 .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhE2heFRW6 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhE2heFRW6 .section-head {
  margin-bottom: 0;
}
.cid-uhE2heFRW6 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhE2heFRW6 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhE2heFRW6 .toggle-panel {
  margin-top: 40px;
}
.cid-uhE2heFRW6 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhE2heFRW6 .card:hover {
  margin-left: 1rem;
}
.cid-uhE2heFRW6 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhE2heFRW6 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhE2heFRW6 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhE2heFRW6 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #010101;
  transition: .3s all;
}
.cid-uhE2heFRW6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhE2heFRW6 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhE2heFRW6 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhE2heFRW6 .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhE2heFRW6 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhE2hgT6UC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhE2hgT6UC .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE2hgT6UC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE2hgT6UC .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE2hgT6UC .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE2hhVx6j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #bcd948;
}
.cid-uhE2hhVx6j .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE2hhVx6j .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE2hhVx6j .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE2hhVx6j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2hhVx6j .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-uhE2hhVx6j .container {
    padding: 0 30px;
  }
}
.cid-uhE2hhVx6j .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhE2hhVx6j .image-wrapper {
  background-color: #ffffff;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhE2hhVx6j .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhE2hhVx6j .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhE2hhVx6j .image-wrapper img {
    height: 350px;
  }
}
.cid-uhE2hj6QS6 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhE2hj6QS6 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE2hj6QS6 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE2hj6QS6 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE2hj6QS6 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE2hk5TFZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE2hk5TFZ .row {
  align-items: center;
  width: 100%;
}
.cid-uhE2hk5TFZ .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE2hk5TFZ .mbr-section-title {
  color: #000000;
}
.cid-uhE2hk5TFZ .mbr-section-subtitle {
  color: #000000;
}
.cid-uhE2hk5TFZ .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE2hk5TFZ .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhE2hk5TFZ .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhE2hk5TFZ .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhE2hk5TFZ .text-container {
    padding: 24px;
  }
}
.cid-uhE2hk5TFZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE2hk5TFZ .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhE2hk5TFZ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhE2hk5TFZ .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhE2hk5TFZ .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhE2hlwmDT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhE2hlwmDT .row {
  align-items: center;
  width: 100%;
}
.cid-uhE2hlwmDT .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #bcd948;
}
@media (max-width: 767px) {
  .cid-uhE2hlwmDT .content-container {
    flex-direction: column-reverse;
  }
}
.cid-uhE2hlwmDT .col-text {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 55%;
}
@media (max-width: 767px) {
  .cid-uhE2hlwmDT .col-text {
    max-width: 100%;
  }
}
.cid-uhE2hlwmDT .text-container {
  padding: 40px;
}
@media (max-width: 991px) {
  .cid-uhE2hlwmDT .text-container {
    padding: 24px;
  }
}
.cid-uhE2hlwmDT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE2hlwmDT .label-text {
  width: 100%;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.4;
}
.cid-uhE2hlwmDT .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 8px;
}
.cid-uhE2hlwmDT .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-uhE2hlwmDT .btn-container {
  width: 100%;
}
.cid-uhE2hlwmDT .mbr-section-btn {
  margin-top: 22px;
}
.cid-uhE2hlwmDT .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-uhE2hlwmDT .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-uhE2hlwmDT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uhE2hlwmDT .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-uhE2hlwmDT .col-img {
  width: 100%;
  max-width: 45%;
}
@media (max-width: 767px) {
  .cid-uhE2hlwmDT .col-img {
    max-width: 100%;
  }
}
.cid-uhE2hlwmDT .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.cid-uhE2hlwmDT .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-uhE2hmyGbL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #bcd948;
}
.cid-uhE2hmyGbL .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE2hmyGbL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE2hmyGbL .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE2hmyGbL .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE3nlX9e7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhE3nlX9e7 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE3nlX9e7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE3nlX9e7 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE3nlX9e7 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE3wgY66H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE3wgY66H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE3wgY66H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE3wgY66H .row {
  justify-content: space-between;
}
.cid-uhE3wgY66H .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhE3wgY66H .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhE3wgY66H .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card:hover::before,
.cid-uhE3wgY66H .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhE3wgY66H .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhE3wgY66H .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhE3wgY66H .mbr-desc {
  color: #000000;
}
.cid-uhE3wgY66H .panel-title-edit {
  color: #000000;
}
.cid-uhE3wgY66H .list {
  color: #000000;
}
.cid-uhE2hnBEYE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhE2hnBEYE .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhE2hnBEYE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhE2hnBEYE .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-uhE2hnBEYE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhE2hnBEYE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhE2hnBEYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2hnBEYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE2hoFfwM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE2hoFfwM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE2hoFfwM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE2hoFfwM .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhE2hoFfwM .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhE2hoFfwM .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhE2hoFfwM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhE2hoFfwM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhE2hoFfwM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhE2hoFfwM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhE2hoFfwM .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhE2hoFfwM .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhE2hoFfwM .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhE2hoFfwM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhE2hoFfwM .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhE2hoFfwM .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhE2hoFfwM .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhE2hoFfwM .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhE2hoFfwM .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhE2hoFfwM .list li {
  transition: 0.5s all;
}
.cid-uhE2hoFfwM .list li:hover {
  opacity: 0.6;
}
.cid-uhE2hoFfwM .item-wrap {
  margin-bottom: 12px;
}
.cid-uhE2hoFfwM .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhE2hoFfwM .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhE2hoFfwM .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhE2hoFfwM .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhE2hoFfwM .copyright-col {
    text-align: center;
  }
}
.cid-uhE2hoFfwM .copyright {
  color: #000000;
}
.cid-uhE4PXBe1v {
  background-color: transparent;
}
.cid-uhE4PXBe1v .navbar-dropdown {
  background-color: #fffa76 !important;
  padding: 0;
}
.cid-uhE4PXBe1v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fffa76 !important;
  background: #fffa76;
}
.cid-uhE4PXBe1v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhE4PXBe1v .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhE4PXBe1v .menu_box .navbar.opened,
  .cid-uhE4PXBe1v .menu_box .navbar-collapse {
    background-color: #fffa76 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhE4PXBe1v .navbar-dropdown {
  position: relative !important;
}
.cid-uhE4PXBe1v .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhE4PXBe1v .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhE4PXBe1v .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhE4PXBe1v .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhE4PXBe1v .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhE4PXBe1v .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhE4PXBe1v .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhE4PXBe1v .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhE4PXBe1v .offcanvas-body .mbr-text,
  .cid-uhE4PXBe1v .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhE4PXBe1v .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhE4PXBe1v .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhE4PXBe1v ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhE4PXBe1v .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhE4PXBe1v .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhE4PXBe1v .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhE4PXBe1v li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhE4PXBe1v .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhE4PXBe1v .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhE4PXBe1v .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhE4PXBe1v .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .nav-item {
    margin: 0 !important;
  }
}
.cid-uhE4PXBe1v .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhE4PXBe1v .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhE4PXBe1v .nav-item .nav-link:hover::before,
.cid-uhE4PXBe1v .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhE4PXBe1v .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhE4PXBe1v .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhE4PXBe1v .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhE4PXBe1v .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhE4PXBe1v .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhE4PXBe1v .offcanvas_box {
    display: none;
  }
}
.cid-uhE4PXBe1v .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhE4PXBe1v .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhE4PXBe1v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhE4PXBe1v .container {
  display: flex;
  margin: auto;
}
.cid-uhE4PXBe1v .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhE4PXBe1v .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhE4PXBe1v .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhE4PXBe1v .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhE4PXBe1v .navbar-nav {
    margin: 0;
  }
}
.cid-uhE4PXBe1v .dropdown-menu,
.cid-uhE4PXBe1v .navbar.opened {
  background-color: false !important;
}
.cid-uhE4PXBe1v .nav-item:focus,
.cid-uhE4PXBe1v .nav-link:focus {
  outline: none;
}
.cid-uhE4PXBe1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhE4PXBe1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhE4PXBe1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhE4PXBe1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhE4PXBe1v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhE4PXBe1v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhE4PXBe1v .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhE4PXBe1v .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhE4PXBe1v .navbar.opened {
  transition: all 0.3s;
}
.cid-uhE4PXBe1v .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhE4PXBe1v .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhE4PXBe1v .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhE4PXBe1v .navbar.collapsed {
  justify-content: center;
}
.cid-uhE4PXBe1v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhE4PXBe1v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhE4PXBe1v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhE4PXBe1v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhE4PXBe1v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhE4PXBe1v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhE4PXBe1v .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhE4PXBe1v .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhE4PXBe1v .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhE4PXBe1v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhE4PXBe1v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhE4PXBe1v .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhE4PXBe1v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhE4PXBe1v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhE4PXBe1v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhE4PXBe1v .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhE4PXBe1v .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhE4PXBe1v .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhE4PXBe1v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhE4PXBe1v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhE4PXBe1v .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhE4PXBe1v .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhE4PXBe1v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhE4PXBe1v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhE4PXBe1v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhE4PXBe1v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhE4PXBe1v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhE4PXBe1v .dropdown-item.active,
.cid-uhE4PXBe1v .dropdown-item:active {
  background-color: transparent;
}
.cid-uhE4PXBe1v .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhE4PXBe1v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhE4PXBe1v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhE4PXBe1v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhE4PXBe1v ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhE4PXBe1v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhE4PXBe1v button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fffa76;
  background: #ffffff;
}
.cid-uhE4PXBe1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhE4PXBe1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhE4PXBe1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhE4PXBe1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhE4PXBe1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhE4PXBe1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhE4PXBe1v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhE4PXBe1v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhE4PXBe1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhE4PXBe1v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhE4PXBe1v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhE4PXBe1v .navbar {
    height: 70px;
  }
  .cid-uhE4PXBe1v .navbar.opened {
    height: auto;
  }
  .cid-uhE4PXBe1v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhE4PXBe1v .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhE4PXBe1v .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhE4PXBe1v .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhE4PXBe1v .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhE4PXBe1v .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhE4PXBe1v .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhE4PXBe1v .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhE4PXBe1v .text_widget {
  margin-bottom: 32px;
}
.cid-uhE4PXBe1v .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhE4PXBe1v .text_widget a:hover,
.cid-uhE4PXBe1v .text_widget a:focus {
  opacity: .8;
}
.cid-uhE4PXBe1v .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhE4PXBe1v .navbar-caption {
  color: #202020;
}
.cid-uhE4PXBe1v .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhE4PXBe1v .mbr-section-subtitle,
.cid-uhE4PXBe1v .text_widget,
.cid-uhE4PXBe1v .mbr-section-btn {
  text-align: center;
}
.cid-uhE4PXBe1v a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhE4PZOssP {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-uhE4PZOssP .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE4PZOssP .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhE4PZOssP .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-uhE4PZOssP .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-uhE4PZOssP .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-uhE4PZOssP .mbr-section-title,
.cid-uhE4PZOssP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhE4Q1gRsH {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-uhE4Q1gRsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4Q1gRsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4Q1gRsH .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uhE4Q1gRsH .mbr-description {
  color: #f3f4ef;
}
.cid-uhE4Q1gRsH .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uhE4Q1gRsH .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhE4Q2xQke {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE4Q2xQke .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhE4Q2xQke .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhE4Q2xQke .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhE4Q2xQke .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhE4Q2xQke .mbr-text {
  color: #000000;
}
.cid-uhE4Q3Rwua {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhE4Q3Rwua .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhE4Q3Rwua .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhE4Q3Rwua .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhE4Q3Rwua .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhE4Q3Rwua .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhE4Q3Rwua .mbr-text {
  color: #606060;
}
.cid-uhE4Q3Rwua .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhE4Q3Rwua .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhE4Q3Rwua .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhE4Q3Rwua .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhE4Q3Rwua .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhE4Q3Rwua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4Q3Rwua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4Q3Rwua .mbr-text,
.cid-uhE4Q3Rwua .mbr-section-btn {
  color: #000000;
}
.cid-uhE4Q5iMDb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE4Q5iMDb .row {
  align-items: center;
  width: 100%;
}
.cid-uhE4Q5iMDb .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE4Q5iMDb .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-uhE4Q5iMDb .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-uhE4Q5iMDb .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uhE4Q5iMDb .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-uhE4Q5iMDb .content-container {
    padding: 2rem !important;
  }
}
.cid-uhE4Q5iMDb .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-uhE4Q5iMDb .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .img-container {
    padding-left: 0;
  }
}
.cid-uhE4Q5iMDb .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-uhE4Q5iMDb .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-uhE4Q5iMDb .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-uhE4Q5iMDb .text-container {
    padding-right: 0;
  }
}
.cid-uhE4Q5iMDb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE4Q5iMDb .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-uhE4Q5iMDb .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-uhE4Q5iMDb .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-uhE4Q5iMDb .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-uhE4Q6MoGt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhE4Q6MoGt .row {
  align-items: center;
  width: 100%;
}
.cid-uhE4Q6MoGt .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE4Q6MoGt .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhE4Q6MoGt .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uhE4Q6MoGt .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE4Q6MoGt .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhE4Q6MoGt .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhE4Q6MoGt .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhE4Q6MoGt .text-container {
    padding: 24px;
  }
}
.cid-uhE4Q6MoGt .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE4Q6MoGt .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhE4Q6MoGt .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uhE4Q6MoGt .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhE4Q6MoGt .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhE4Q8IgYn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #bcd948;
}
.cid-uhE4Q8IgYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4Q8IgYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4Q8IgYn .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-uhE4Q8IgYn .row {
    flex-wrap: wrap;
  }
}
.cid-uhE4Q8IgYn .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE4Q8IgYn .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uhE4Q8IgYn .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
  background-color: #bcd948;
}
@media (max-width: 991px) {
  .cid-uhE4Q8IgYn .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-uhE4Q8IgYn .img-container img {
  max-width: 100%;
}
.cid-uhE4Q8IgYn .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uhE4Q8IgYn .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uhE4Q8IgYn .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uhE4Q8IgYn .section-head {
  margin-bottom: 0;
}
.cid-uhE4Q8IgYn .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhE4Q8IgYn .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uhE4Q8IgYn .toggle-panel {
  margin-top: 40px;
}
.cid-uhE4Q8IgYn .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-uhE4Q8IgYn .card:hover {
  margin-left: 1rem;
}
.cid-uhE4Q8IgYn .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-uhE4Q8IgYn .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-uhE4Q8IgYn .card-header .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 32px;
}
.cid-uhE4Q8IgYn .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #010101;
  transition: .3s all;
}
.cid-uhE4Q8IgYn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-uhE4Q8IgYn .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-uhE4Q8IgYn .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-uhE4Q8IgYn .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-uhE4Q8IgYn .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uhE4QaTDDC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhE4QaTDDC .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE4QaTDDC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE4QaTDDC .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE4QaTDDC .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE4Qcn0Kn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #bcd948;
}
.cid-uhE4Qcn0Kn .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE4Qcn0Kn .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE4Qcn0Kn .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #fafafa 0, #bcd948 43%, #bcd948 100%);
}
.cid-uhE4Qcn0Kn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4Qcn0Kn .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-uhE4Qcn0Kn .container {
    padding: 0 30px;
  }
}
.cid-uhE4Qcn0Kn .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uhE4Qcn0Kn .image-wrapper {
  background-color: #ffffff;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uhE4Qcn0Kn .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uhE4Qcn0Kn .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhE4Qcn0Kn .image-wrapper img {
    height: 350px;
  }
}
.cid-uhE4QdLNSB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhE4QdLNSB .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE4QdLNSB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE4QdLNSB .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE4QdLNSB .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE4Qflmxu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE4Qflmxu .row {
  align-items: center;
  width: 100%;
}
.cid-uhE4Qflmxu .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uhE4Qflmxu .mbr-section-title {
  color: #000000;
}
.cid-uhE4Qflmxu .mbr-section-subtitle {
  color: #000000;
}
.cid-uhE4Qflmxu .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhE4Qflmxu .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uhE4Qflmxu .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uhE4Qflmxu .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-uhE4Qflmxu .text-container {
    padding: 24px;
  }
}
.cid-uhE4Qflmxu .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE4Qflmxu .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uhE4Qflmxu .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uhE4Qflmxu .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-uhE4Qflmxu .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhE4QikaGy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uhE4QikaGy .row {
  align-items: center;
  width: 100%;
}
.cid-uhE4QikaGy .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #bcd948;
}
@media (max-width: 767px) {
  .cid-uhE4QikaGy .content-container {
    flex-direction: column-reverse;
  }
}
.cid-uhE4QikaGy .col-text {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 55%;
}
@media (max-width: 767px) {
  .cid-uhE4QikaGy .col-text {
    max-width: 100%;
  }
}
.cid-uhE4QikaGy .text-container {
  padding: 40px;
}
@media (max-width: 991px) {
  .cid-uhE4QikaGy .text-container {
    padding: 24px;
  }
}
.cid-uhE4QikaGy .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uhE4QikaGy .label-text {
  width: 100%;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.4;
}
.cid-uhE4QikaGy .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 8px;
}
.cid-uhE4QikaGy .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-uhE4QikaGy .btn-container {
  width: 100%;
}
.cid-uhE4QikaGy .mbr-section-btn {
  margin-top: 22px;
}
.cid-uhE4QikaGy .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-uhE4QikaGy .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-uhE4QikaGy .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uhE4QikaGy .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-uhE4QikaGy .col-img {
  width: 100%;
  max-width: 45%;
}
@media (max-width: 767px) {
  .cid-uhE4QikaGy .col-img {
    max-width: 100%;
  }
}
.cid-uhE4QikaGy .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.cid-uhE4QikaGy .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-uhE4QkHP1a {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #bcd948;
}
.cid-uhE4QkHP1a .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE4QkHP1a .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE4QkHP1a .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE4QkHP1a .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE4QmZ1Md {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3f4ef;
}
.cid-uhE4QmZ1Md .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhE4QmZ1Md .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhE4QmZ1Md .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-uhE4QmZ1Md .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhE4QorB5w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE4QorB5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4QorB5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4QorB5w .row {
  justify-content: space-between;
}
.cid-uhE4QorB5w .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhE4QorB5w .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhE4QorB5w .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card:hover::before,
.cid-uhE4QorB5w .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhE4QorB5w .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhE4QorB5w .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhE4QorB5w .mbr-desc {
  color: #000000;
}
.cid-uhE4QorB5w .panel-title-edit {
  color: #000000;
}
.cid-uhE4QorB5w .list {
  color: #000000;
}
.cid-uhE4QuwtlE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhE4QuwtlE .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhE4QuwtlE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhE4QuwtlE .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-uhE4QuwtlE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhE4QuwtlE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhE4QuwtlE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4QuwtlE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4QwmOzP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhE4QwmOzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhE4QwmOzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhE4QwmOzP .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhE4QwmOzP .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhE4QwmOzP .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhE4QwmOzP .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhE4QwmOzP .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhE4QwmOzP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhE4QwmOzP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhE4QwmOzP .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhE4QwmOzP .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhE4QwmOzP .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhE4QwmOzP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhE4QwmOzP .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhE4QwmOzP .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhE4QwmOzP .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhE4QwmOzP .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhE4QwmOzP .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhE4QwmOzP .list li {
  transition: 0.5s all;
}
.cid-uhE4QwmOzP .list li:hover {
  opacity: 0.6;
}
.cid-uhE4QwmOzP .item-wrap {
  margin-bottom: 12px;
}
.cid-uhE4QwmOzP .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhE4QwmOzP .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhE4QwmOzP .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhE4QwmOzP .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhE4QwmOzP .copyright-col {
    text-align: center;
  }
}
.cid-uhE4QwmOzP .copyright {
  color: #000000;
}
.cid-uhDVPmALQ6 {
  background-color: transparent;
}
.cid-uhDVPmALQ6 .navbar-dropdown {
  background-color: #fffa76 !important;
  padding: 0;
}
.cid-uhDVPmALQ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fffa76 !important;
  background: #fffa76;
}
.cid-uhDVPmALQ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhDVPmALQ6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhDVPmALQ6 .menu_box .navbar.opened,
  .cid-uhDVPmALQ6 .menu_box .navbar-collapse {
    background-color: #fffa76 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhDVPmALQ6 .navbar-dropdown {
  position: relative !important;
}
.cid-uhDVPmALQ6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhDVPmALQ6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhDVPmALQ6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uhDVPmALQ6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhDVPmALQ6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhDVPmALQ6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas-body .mbr-text,
  .cid-uhDVPmALQ6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhDVPmALQ6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhDVPmALQ6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhDVPmALQ6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhDVPmALQ6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDVPmALQ6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhDVPmALQ6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhDVPmALQ6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhDVPmALQ6 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhDVPmALQ6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhDVPmALQ6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhDVPmALQ6 .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .nav-item {
    margin: 0 !important;
  }
}
.cid-uhDVPmALQ6 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uhDVPmALQ6 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uhDVPmALQ6 .nav-item .nav-link:hover::before,
.cid-uhDVPmALQ6 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uhDVPmALQ6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhDVPmALQ6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhDVPmALQ6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhDVPmALQ6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhDVPmALQ6 .offcanvas_box {
    display: none;
  }
}
.cid-uhDVPmALQ6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhDVPmALQ6 .container {
  display: flex;
  margin: auto;
}
.cid-uhDVPmALQ6 .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhDVPmALQ6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhDVPmALQ6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhDVPmALQ6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .navbar-nav {
    margin: 0;
  }
}
.cid-uhDVPmALQ6 .dropdown-menu,
.cid-uhDVPmALQ6 .navbar.opened {
  background-color: false !important;
}
.cid-uhDVPmALQ6 .nav-item:focus,
.cid-uhDVPmALQ6 .nav-link:focus {
  outline: none;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhDVPmALQ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhDVPmALQ6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhDVPmALQ6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhDVPmALQ6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhDVPmALQ6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhDVPmALQ6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uhDVPmALQ6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhDVPmALQ6 .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhDVPmALQ6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhDVPmALQ6 .navbar.collapsed {
  justify-content: center;
}
.cid-uhDVPmALQ6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhDVPmALQ6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhDVPmALQ6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhDVPmALQ6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhDVPmALQ6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhDVPmALQ6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhDVPmALQ6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhDVPmALQ6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhDVPmALQ6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhDVPmALQ6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhDVPmALQ6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhDVPmALQ6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhDVPmALQ6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhDVPmALQ6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhDVPmALQ6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhDVPmALQ6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhDVPmALQ6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhDVPmALQ6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhDVPmALQ6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVPmALQ6 .dropdown-item.active,
.cid-uhDVPmALQ6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uhDVPmALQ6 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhDVPmALQ6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhDVPmALQ6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhDVPmALQ6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhDVPmALQ6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhDVPmALQ6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fffa76;
  background: #ffffff;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhDVPmALQ6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhDVPmALQ6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhDVPmALQ6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhDVPmALQ6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhDVPmALQ6 .navbar {
    height: 70px;
  }
  .cid-uhDVPmALQ6 .navbar.opened {
    height: auto;
  }
  .cid-uhDVPmALQ6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDVPmALQ6 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhDVPmALQ6 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uhDVPmALQ6 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhDVPmALQ6 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhDVPmALQ6 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uhDVPmALQ6 .navbar-caption:hover {
  color: #ddff55;
}
@media (min-width: 992px) {
  .cid-uhDVPmALQ6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhDVPmALQ6 .text_widget {
  margin-bottom: 32px;
}
.cid-uhDVPmALQ6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhDVPmALQ6 .text_widget a:hover,
.cid-uhDVPmALQ6 .text_widget a:focus {
  opacity: .8;
}
.cid-uhDVPmALQ6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhDVPmALQ6 .navbar-caption {
  color: #202020;
}
.cid-uhDVPmALQ6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhDVPmALQ6 .mbr-section-subtitle,
.cid-uhDVPmALQ6 .text_widget,
.cid-uhDVPmALQ6 .mbr-section-btn {
  text-align: center;
}
.cid-uhDVPmALQ6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhDVPolj68 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4ef;
}
.cid-uhDVPolj68 .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-uhDVPolj68 .mbr-section-title {
  color: #f3f4ef;
}
.cid-uhDVPolj68 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.cid-uhDVPolj68 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-uhDVPolj68 .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-uhDVPolj68 .mbr-section-title,
.cid-uhDVPolj68 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhDVPphafP {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-uhDVPphafP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPphafP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPphafP .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uhDVPphafP .mbr-description {
  color: #f3f4ef;
}
.cid-uhDVPphafP .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uhDVPphafP .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uhDVPqn16I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDVPqn16I .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ddff55;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDVPqn16I .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDVPqn16I .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDVPqn16I .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDVPqn16I .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDVPqn16I .mbr-text {
  color: #606060;
}
.cid-uhDVPqn16I .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDVPqn16I .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDVPqn16I .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDVPqn16I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPqn16I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPqn16I .mbr-text,
.cid-uhDVPqn16I .mbr-section-btn {
  color: #000000;
}
.cid-uhDVPrqqnx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDVPrqqnx .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDVPrqqnx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDVPrqqnx .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-uhDVPrqqnx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDVPrqqnx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPstKYJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcd948;
}
.cid-uhDVPstKYJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPstKYJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPstKYJ .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uhDVPstKYJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uhDVPstKYJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhDVPstKYJ .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .items-container {
    flex-wrap: wrap;
  }
}
.cid-uhDVPstKYJ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-uhDVPstKYJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-uhDVPstKYJ .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-uhDVPstKYJ .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-uhDVPstKYJ .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-uhDVPstKYJ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-uhDVPstKYJ .list li {
  transition: 0.5s all;
}
.cid-uhDVPstKYJ .list li:hover {
  opacity: 0.6;
}
.cid-uhDVPstKYJ .item-wrap {
  margin-bottom: 12px;
}
.cid-uhDVPstKYJ .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-uhDVPstKYJ .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uhDVPstKYJ .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-uhDVPstKYJ .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-uhDVPstKYJ .copyright-col {
    text-align: center;
  }
}
.cid-uhDVPstKYJ .copyright {
  color: #000000;
}
