body {
  font-family: Albert Sans;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
.display-2 {
  line-height: 1;
}
.display-5 {
  line-height: 1;
}
.display-7 {
  line-height: 1.2;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.232rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .display-2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
/* 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: #f50d0d !important;
}
.bg-success {
  background-color: #6bffc7 !important;
}
.bg-info {
  background-color: #17003b !important;
}
.bg-warning {
  background-color: #fffa63 !important;
}
.bg-danger {
  background-color: #ffb18a !important;
}
.btn-primary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-primary,
.btn-primary:active {
  background-color: #f50d0d !important;
  border-color: #f50d0d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a50707 !important;
  border-color: #a50707 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a50707 !important;
  border-color: #a50707 !important;
}
.btn-primary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: none;
  color: #f50d0d !important;
}
.btn-primary:hover:before {
  transform: translateX(0);
}
.btn-secondary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff57be !important;
  border-color: #ff57be !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  box-shadow: none;
  color: #ff57be !important;
}
.btn-secondary:hover:before {
  transform: translateX(0);
}
.btn-info {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-info,
.btn-info:active {
  background-color: #17003b !important;
  border-color: #17003b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-info:hover {
  box-shadow: none;
  color: #17003b !important;
}
.btn-info:hover:before {
  transform: translateX(0);
}
.btn-success {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-success,
.btn-success:active {
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
  color: #006b43 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #00140d !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #006b43 !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-success:hover {
  box-shadow: none;
  color: #6bffc7 !important;
}
.btn-success:hover:before {
  transform: translateX(0);
}
.btn-warning {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
  color: #636000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0c0c00 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #636000 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-warning:hover {
  box-shadow: none;
  color: #fffa63 !important;
}
.btn-warning:hover:before {
  transform: translateX(0);
}
.btn-danger {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-danger:hover {
  box-shadow: none;
  color: #ffb18a !important;
}
.btn-danger:hover:before {
  transform: translateX(0);
}
.btn-white {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-white:hover {
  box-shadow: none;
  color: #fafafa !important;
}
.btn-white:hover:before {
  transform: translateX(0);
}
.btn-black {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-black:hover {
  box-shadow: none;
  color: #232323 !important;
}
.btn-black:hover:before {
  transform: translateX(0);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f50d0d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a50707 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f50d0d !important;
  border-color: #f50d0d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff57be;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff009c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff57be !important;
  border-color: #ff57be !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #17003b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #17003b !important;
  border-color: #17003b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6bffc7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #14ffa6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #006b43 !important;
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fffa63;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff70c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #636000 !important;
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb18a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff7733 !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: #ffb18a !important;
  border-color: #ffb18a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f50d0d !important;
}
.text-secondary {
  color: #ff57be !important;
}
.text-success {
  color: #6bffc7 !important;
}
.text-info {
  color: #17003b !important;
}
.text-warning {
  color: #fffa63 !important;
}
.text-danger {
  color: #ffb18a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f50d0d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff57be !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6bffc7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #17003b !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fffa63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffb18a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f50d0d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #17003b;
}
.alert-warning {
  background-color: #fffa63;
}
.alert-danger {
  background-color: #ffb18a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f50d0d;
  border-color: #f50d0d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f50d0d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd1d1;
}
.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: #7821ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f50d0d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #f50d0d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f50d0d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f50d0d;
}
.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: #f50d0d;
  border-bottom-color: #f50d0d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #f50d0d !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: #ff57be !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='%23f50d0d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uxz6hl5ZjA {
  background-color: transparent;
}
.cid-uxz6hl5ZjA .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxz6hl5ZjA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxz6hl5ZjA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxz6hl5ZjA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxz6hl5ZjA .menu_box .navbar.opened,
  .cid-uxz6hl5ZjA .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxz6hl5ZjA .navbar-dropdown {
  position: relative !important;
}
.cid-uxz6hl5ZjA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxz6hl5ZjA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxz6hl5ZjA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxz6hl5ZjA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxz6hl5ZjA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxz6hl5ZjA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxz6hl5ZjA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxz6hl5ZjA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxz6hl5ZjA .offcanvas-body .mbr-text,
  .cid-uxz6hl5ZjA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxz6hl5ZjA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxz6hl5ZjA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxz6hl5ZjA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxz6hl5ZjA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxz6hl5ZjA .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-uxz6hl5ZjA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxz6hl5ZjA 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-uxz6hl5ZjA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxz6hl5ZjA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxz6hl5ZjA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxz6hl5ZjA .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .nav-item {
    margin: 0 !important;
  }
}
.cid-uxz6hl5ZjA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxz6hl5ZjA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxz6hl5ZjA .nav-item .nav-link:hover,
.cid-uxz6hl5ZjA .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxz6hl5ZjA .nav-item .nav-link:hover:before,
.cid-uxz6hl5ZjA .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxz6hl5ZjA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxz6hl5ZjA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxz6hl5ZjA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxz6hl5ZjA .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-uxz6hl5ZjA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxz6hl5ZjA .offcanvas_box {
    display: none;
  }
}
.cid-uxz6hl5ZjA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxz6hl5ZjA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxz6hl5ZjA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxz6hl5ZjA .container {
  display: flex;
  margin: auto;
}
.cid-uxz6hl5ZjA .iconfont-wrapper {
  color: #ffffff;
  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-uxz6hl5ZjA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxz6hl5ZjA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxz6hl5ZjA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxz6hl5ZjA .navbar-nav {
    margin: 0;
  }
}
.cid-uxz6hl5ZjA .dropdown-menu,
.cid-uxz6hl5ZjA .navbar.opened {
  background-color: false !important;
}
.cid-uxz6hl5ZjA .nav-item:focus,
.cid-uxz6hl5ZjA .nav-link:focus {
  outline: none;
}
.cid-uxz6hl5ZjA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxz6hl5ZjA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxz6hl5ZjA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxz6hl5ZjA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxz6hl5ZjA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxz6hl5ZjA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxz6hl5ZjA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxz6hl5ZjA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxz6hl5ZjA .navbar.opened {
  transition: all 0.3s;
}
.cid-uxz6hl5ZjA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxz6hl5ZjA .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxz6hl5ZjA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxz6hl5ZjA .navbar.collapsed {
  justify-content: center;
}
.cid-uxz6hl5ZjA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxz6hl5ZjA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxz6hl5ZjA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxz6hl5ZjA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxz6hl5ZjA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxz6hl5ZjA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxz6hl5ZjA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxz6hl5ZjA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxz6hl5ZjA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxz6hl5ZjA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxz6hl5ZjA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxz6hl5ZjA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxz6hl5ZjA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxz6hl5ZjA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxz6hl5ZjA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxz6hl5ZjA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxz6hl5ZjA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxz6hl5ZjA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxz6hl5ZjA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxz6hl5ZjA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxz6hl5ZjA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxz6hl5ZjA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxz6hl5ZjA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxz6hl5ZjA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxz6hl5ZjA .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;
}
@media (min-width: 1440px) {
  .cid-uxz6hl5ZjA .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxz6hl5ZjA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxz6hl5ZjA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxz6hl5ZjA .dropdown-item.active,
.cid-uxz6hl5ZjA .dropdown-item:active {
  background-color: transparent;
}
.cid-uxz6hl5ZjA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxz6hl5ZjA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxz6hl5ZjA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxz6hl5ZjA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxz6hl5ZjA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxz6hl5ZjA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxz6hl5ZjA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxz6hl5ZjA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxz6hl5ZjA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxz6hl5ZjA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxz6hl5ZjA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxz6hl5ZjA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxz6hl5ZjA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxz6hl5ZjA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxz6hl5ZjA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxz6hl5ZjA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxz6hl5ZjA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxz6hl5ZjA .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-uxz6hl5ZjA .navbar {
    height: 70px;
  }
  .cid-uxz6hl5ZjA .navbar.opened {
    height: auto;
  }
  .cid-uxz6hl5ZjA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxz6hl5ZjA .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxz6hl5ZjA .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxz6hl5ZjA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxz6hl5ZjA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxz6hl5ZjA .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxz6hl5ZjA .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxz6hl5ZjA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxz6hl5ZjA .text_widget {
  margin-bottom: 32px;
}
.cid-uxz6hl5ZjA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxz6hl5ZjA .text_widget a:hover,
.cid-uxz6hl5ZjA .text_widget a:focus {
  opacity: .8;
}
.cid-uxz6hl5ZjA .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxz6hl5ZjA .contacts-wrapper {
    display: none;
  }
}
.cid-uxz6hl5ZjA .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxz6hl5ZjA .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxz6hl5ZjA .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxz6hl5ZjA .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxz6hl5ZjA .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxz6hl5ZjA .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxz6hl5ZjA .navbar-caption {
  color: #c7fcb5;
}
.cid-uxz6hl5ZjA .mbr-contact {
  color: #ffffff;
}
.cid-uxz6hl5ZjA .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxz6hl5ZjA .mbr-section-subtitle,
.cid-uxz6hl5ZjA .text_widget,
.cid-uxz6hl5ZjA .mbr-section-btn {
  text-align: center;
}
.cid-uxz6hl5ZjA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxAjhC7U0Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAjhC7U0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAjhC7U0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAjhC7U0Y .items-wrap {
  justify-content: space-between;
}
.cid-uxAjhC7U0Y .items-wrap .card {
  justify-content: center;
}
.cid-uxAjhC7U0Y .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxAjhC7U0Y .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxAjhC7U0Y .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxAjhC7U0Y .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAjhC7U0Y .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxAjhC7U0Y .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxAjhC7U0Y .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAjhC7U0Y .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAjhC7U0Y .image-wrapper img {
    height: 350px;
  }
}
.cid-uxAjhC7U0Y .mbr-desc {
  color: #000000;
}
.cid-uxAjhC7U0Y .mbr-section-title {
  color: #000000;
}
.cid-uxAjhC7U0Y .mbr-text {
  color: #000000;
}
.cid-uxzkJCFSGl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxzkJCFSGl .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uxzkJCFSGl .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uxzkJCFSGl .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb18a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uxzkJCFSGl .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uxzkJCFSGl .mbr-text {
  color: #000000;
}
.cid-uxAkYuRQec {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxAkYuRQec .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uxAkYuRQec .mbr-text {
  line-height: 1.5;
  color: #000000;
}
.cid-uxAkYuRQec .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-uxAkYuRQec .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAkYuRQec .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAiEPvwfX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAiEPvwfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAiEPvwfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAiEPvwfX .row {
  justify-content: flex-start;
}
.cid-uxAiEPvwfX .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uxAiEPvwfX .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxAiEPvwfX .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uxAiEPvwfX .image-wrapper {
  width: 100%;
}
.cid-uxAiEPvwfX .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uxAiEPvwfX .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uxAiEPvwfX .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxAiEPvwfX .mbr-text {
    margin-top: 45px;
  }
}
.cid-uxAiEPvwfX .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uxAiEPvwfX .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uxAiEPvwfX .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uxAiEPvwfX .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uxAiEPvwfX .mbr-text,
.cid-uxAiEPvwfX .mbr-section-btn {
  color: #000000;
}
.cid-tqJ3zDkIcR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqJ3zDkIcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ3zDkIcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ3zDkIcR .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #f50d0d;
  margin-bottom: 3rem;
}
.cid-tqJ3zDkIcR b,
.cid-tqJ3zDkIcR strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqJ3zDkIcR .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqJ3zDkIcR .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqJ3zDkIcR .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqJ3zDkIcR .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqJ3zDkIcR .card {
  padding: 0;
}
.cid-tqJ3zDkIcR .container-fluid {
  padding: 0;
}
.cid-tqJ3zDkIcR .container-fluid .row {
  margin: 0;
}
.cid-tqJ3zDkIcR .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqJ3zDkIcR .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tqJ3zDkIcR .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqJ3zDkIcR .card1 {
  background: #ffb18a;
}
.cid-tqJ3zDkIcR .card2 {
  background: #ffb18a;
}
.cid-tqJ3zDkIcR .card3 {
  background: #ffb18a;
}
.cid-tqJ3zDkIcR .card-text,
.cid-tqJ3zDkIcR .mbr-section-btn,
.cid-tqJ3zDkIcR .social-row {
  color: #17003b;
  text-align: center;
}
.cid-tqJ3zDkIcR .card-title,
.cid-tqJ3zDkIcR .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-tqJ3zDkIcR .mbr-link,
.cid-tqJ3zDkIcR .content-wrap,
.cid-tqJ3zDkIcR path {
  color: #17003b;
  text-align: center;
}
.cid-uxAk5ViCPz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAk5ViCPz .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxAk5ViCPz .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxAk5ViCPz .col-title,
.cid-uxAk5ViCPz .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxAk5ViCPz .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxAk5ViCPz .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAk5ViCPz .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxAk5ViCPz .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxAk5ViCPz .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxAk5ViCPz .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAdRphm5T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxAdRphm5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAdRphm5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAdRphm5T .container {
  max-width: 1600px;
}
.cid-uxAdRphm5T .row {
  justify-content: left;
}
.cid-uxAdRphm5T .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-uxAdRphm5T .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-uxAdRphm5T .title-container {
    margin-bottom: 50px;
  }
}
.cid-uxAdRphm5T .mbr-section-title {
  color: #ffffff;
}
.cid-uxAdRphm5T .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uxAdRphm5T .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-uxAdRphm5T .img-container {
    height: 350px;
  }
}
.cid-uxAdRphm5T .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uxAdRphm5T .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uxAdRphm5T .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-uxAdRphm5T .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uxAk8E1pEu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAk8E1pEu .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxAk8E1pEu .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxAk8E1pEu .col-title,
.cid-uxAk8E1pEu .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxAk8E1pEu .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxAk8E1pEu .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAk8E1pEu .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxAk8E1pEu .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxAk8E1pEu .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxAk8E1pEu .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAfKlA3yU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffb18a;
}
.cid-uxAfKlA3yU .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uxAfKlA3yU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAfKlA3yU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAfKlA3yU .content-wrap {
  margin: 0;
}
.cid-uxAfKlA3yU .content-wrap .card {
  padding: 0;
}
.cid-uxAfKlA3yU .content-wrapper {
  padding: 40px 72px;
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uxAfKlA3yU .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxAfKlA3yU .content-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uxAfKlA3yU .content-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uxAfKlA3yU .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper {
  border-bottom: none;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
  flex-wrap: wrap;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 16px;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #000000;
  padding: 16px 25px;
  border: 2px solid #000000;
  box-shadow: 4px 3px 0 0 #000000;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxAfKlA3yU .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffb18a;
}
.cid-uxAfKlA3yU .tab-content {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uxAfKlA3yU .tab-content {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxAfKlA3yU .tab-content {
    padding: 40px 0;
  }
}
.cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .image-wrap img {
    height: 350px;
  }
}
.cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uxAfKlA3yU .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uxAfKlA3yU .mbr-section-title {
  color: #150764;
}
.cid-uxAfKlA3yU .item-title {
  color: #ffffff;
}
.cid-uxAfKlA3yU .item-text {
  color: #150764;
}
.cid-uxAfKlA3yU .mbr-section-title,
.cid-uxAfKlA3yU .tabs-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uxAkqncGjI {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-uxAkqncGjI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAkqncGjI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAkqncGjI .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uxAkqncGjI .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uxAkqncGjI .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxAkqncGjI .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-uxAkqncGjI .content-container {
    padding: 0 20px;
  }
}
.cid-uxAkqncGjI .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-uxAkqncGjI .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uxAkqncGjI .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .image-wrapper img {
    max-width: 100%;
  }
}
.cid-uxAkqncGjI .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-uxAkqncGjI .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAkqncGjI .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAkqncGjI .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uxAkqncGjI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uxAkqncGjI .mbr-text,
.cid-uxAkqncGjI .mbr-section-btn {
  color: #000000;
}
.cid-uxAi1r30k7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uxAi1r30k7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAi1r30k7 .col-12 {
  padding: 0;
}
.cid-uxAi1r30k7 .row {
  margin: 0;
}
.cid-uxAi1r30k7 .card-wrapper {
  border: 1px solid #f50d0d;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uxAi1r30k7 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uxAi1r30k7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAi1r30k7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxAi1r30k7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxAi1r30k7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxAi1r30k7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxAi1r30k7 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxAi1r30k7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxAi1r30k7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxAi1r30k7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxAi1r30k7 .mbr-text,
.cid-uxAi1r30k7 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uxAqWbmvr3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAqWbmvr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAqWbmvr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAqWbmvr3 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uxAqWbmvr3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uxAqWbmvr3 .container {
    padding: 0 26px;
  }
}
.cid-uxAqWbmvr3 .row {
  justify-content: center;
}
.cid-uxAqWbmvr3 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffb18a;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uxAqWbmvr3 .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uxAqWbmvr3 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uxAqWbmvr3 .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uxAqWbmvr3 .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uxAqWbmvr3 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uxAqWbmvr3 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uxAqWbmvr3 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uxAqWbmvr3 .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uxAqWbmvr3 .mbr-section-title {
  color: #ffffff;
}
.cid-uxAqWbmvr3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxAqWbmvr3 .mbr-desc {
  color: #ffffff;
}
.cid-uxAqWbmvr3 .mbr-text {
  color: #ffffff;
}
.cid-uxAqWbmvr3 .mbr-link {
  color: #ffffff;
}
.cid-uxzAohPhas {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxzAohPhas .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzAohPhas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzAohPhas .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uxzAohPhas .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxzAohPhas .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uxzAohPhas .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxzAohPhas .container {
    padding: 0 16px;
  }
}
.cid-uxzAohPhas .row {
  justify-content: center;
}
.cid-uxzAohPhas .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxzAohPhas .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxzAohPhas .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uxzAohPhas .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uxzAohPhas .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uxzAohPhas .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uxzAohPhas .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uxzAohPhas .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxzAohPhas .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uxzAohPhas .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxzAohPhas .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uxzAohPhas .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uxzAohPhas .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uxzAohPhas .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uxzAohPhas .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxzAohPhas .panel-title {
  color: #000000;
}
.cid-uxzAohPhas .panel-text {
  color: #000000;
}
.cid-uxznSroi5D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uxznSroi5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxznSroi5D .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-uxznSroi5D .container {
    padding: 0 20px;
  }
}
.cid-uxznSroi5D .row {
  margin: 0;
}
.cid-uxznSroi5D .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxznSroi5D .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxznSroi5D .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uxznSroi5D .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uxznSroi5D .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uxznSroi5D .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uxznSroi5D .mbr-section-title {
  color: #ffffff;
}
.cid-uxAdTIqh9e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAdTIqh9e .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uxAdTIqh9e .content_wrapper:hover .mbr-section-title a {
  color: #ff57be !important;
}
.cid-uxAdTIqh9e .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uxAdTIqh9e .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uxAdTIqh9e .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uxAdTIqh9e .mbr-section-btn .btn-secondary-outline:hover,
.cid-uxAdTIqh9e .mbr-section-btn .btn-secondary-outline .active,
.cid-uxAdTIqh9e .mbr-section-btn .btn-secondary-outline:focus {
  color: #f50d0d !important;
}
.cid-uxAdTIqh9e .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uxAdTIqh9e .image_post {
  display: inline-block;
}
.cid-uxAdTIqh9e .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uxAdTIqh9e .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uxAdTIqh9e .mbr-text,
.cid-uxAdTIqh9e .mbr-section-btn {
  color: #000000;
}
.cid-uxzo5Om1Fq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxzo5Om1Fq .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxzo5Om1Fq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxzo5Om1Fq .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-uxzo5Om1Fq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxzo5Om1Fq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxzo5Om1Fq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzo5Om1Fq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzof8ECh1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxzof8ECh1 .content {
    text-align: center;
  }
  .cid-uxzof8ECh1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxzof8ECh1 .logo-subtitle {
  color: #8d97ad;
}
.cid-uxzof8ECh1 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxzof8ECh1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxzof8ECh1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxzof8ECh1 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxzof8ECh1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxzof8ECh1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxzof8ECh1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxzof8ECh1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxzof8ECh1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxzof8ECh1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxzof8ECh1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxzof8ECh1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxzof8ECh1 .list-item {
  display: flex;
}
.cid-uxzof8ECh1 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxzof8ECh1 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxzof8ECh1 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxzof8ECh1 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxzof8ECh1 .column-title {
  color: #ffffff;
}
.cid-uxzof8ECh1 .mbr-text {
  color: #ffffff;
}
.cid-uxzof8ECh1 P {
  color: #ffffff;
}
.cid-uxzDYfe25q {
  background-color: transparent;
}
.cid-uxzDYfe25q .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxzDYfe25q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxzDYfe25q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxzDYfe25q .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxzDYfe25q .menu_box .navbar.opened,
  .cid-uxzDYfe25q .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxzDYfe25q .navbar-dropdown {
  position: relative !important;
}
.cid-uxzDYfe25q .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxzDYfe25q .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxzDYfe25q .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxzDYfe25q .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxzDYfe25q .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxzDYfe25q .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxzDYfe25q .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxzDYfe25q .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxzDYfe25q .offcanvas-body .mbr-text,
  .cid-uxzDYfe25q .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxzDYfe25q .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxzDYfe25q .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxzDYfe25q ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxzDYfe25q .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxzDYfe25q .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-uxzDYfe25q .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxzDYfe25q 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-uxzDYfe25q .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxzDYfe25q .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxzDYfe25q .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxzDYfe25q .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .nav-item {
    margin: 0 !important;
  }
}
.cid-uxzDYfe25q .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxzDYfe25q .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxzDYfe25q .nav-item .nav-link:hover,
.cid-uxzDYfe25q .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxzDYfe25q .nav-item .nav-link:hover:before,
.cid-uxzDYfe25q .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxzDYfe25q .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxzDYfe25q .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxzDYfe25q .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxzDYfe25q .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-uxzDYfe25q .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxzDYfe25q .offcanvas_box {
    display: none;
  }
}
.cid-uxzDYfe25q .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxzDYfe25q .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxzDYfe25q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxzDYfe25q .container {
  display: flex;
  margin: auto;
}
.cid-uxzDYfe25q .iconfont-wrapper {
  color: #ffffff;
  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-uxzDYfe25q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxzDYfe25q .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxzDYfe25q .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxzDYfe25q .navbar-nav {
    margin: 0;
  }
}
.cid-uxzDYfe25q .dropdown-menu,
.cid-uxzDYfe25q .navbar.opened {
  background-color: false !important;
}
.cid-uxzDYfe25q .nav-item:focus,
.cid-uxzDYfe25q .nav-link:focus {
  outline: none;
}
.cid-uxzDYfe25q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxzDYfe25q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxzDYfe25q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxzDYfe25q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxzDYfe25q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxzDYfe25q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxzDYfe25q .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxzDYfe25q .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxzDYfe25q .navbar.opened {
  transition: all 0.3s;
}
.cid-uxzDYfe25q .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxzDYfe25q .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxzDYfe25q .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxzDYfe25q .navbar.collapsed {
  justify-content: center;
}
.cid-uxzDYfe25q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxzDYfe25q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxzDYfe25q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxzDYfe25q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxzDYfe25q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxzDYfe25q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxzDYfe25q .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxzDYfe25q .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxzDYfe25q .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxzDYfe25q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxzDYfe25q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxzDYfe25q .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxzDYfe25q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxzDYfe25q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxzDYfe25q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxzDYfe25q .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxzDYfe25q .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxzDYfe25q .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxzDYfe25q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxzDYfe25q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxzDYfe25q .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxzDYfe25q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxzDYfe25q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxzDYfe25q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxzDYfe25q .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;
}
@media (min-width: 1440px) {
  .cid-uxzDYfe25q .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxzDYfe25q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxzDYfe25q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxzDYfe25q .dropdown-item.active,
.cid-uxzDYfe25q .dropdown-item:active {
  background-color: transparent;
}
.cid-uxzDYfe25q .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxzDYfe25q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxzDYfe25q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxzDYfe25q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxzDYfe25q ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxzDYfe25q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxzDYfe25q button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxzDYfe25q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxzDYfe25q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxzDYfe25q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxzDYfe25q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxzDYfe25q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxzDYfe25q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxzDYfe25q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxzDYfe25q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxzDYfe25q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxzDYfe25q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxzDYfe25q .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-uxzDYfe25q .navbar {
    height: 70px;
  }
  .cid-uxzDYfe25q .navbar.opened {
    height: auto;
  }
  .cid-uxzDYfe25q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxzDYfe25q .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxzDYfe25q .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxzDYfe25q .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxzDYfe25q .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxzDYfe25q .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxzDYfe25q .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxzDYfe25q .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxzDYfe25q .text_widget {
  margin-bottom: 32px;
}
.cid-uxzDYfe25q .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxzDYfe25q .text_widget a:hover,
.cid-uxzDYfe25q .text_widget a:focus {
  opacity: .8;
}
.cid-uxzDYfe25q .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxzDYfe25q .contacts-wrapper {
    display: none;
  }
}
.cid-uxzDYfe25q .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxzDYfe25q .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxzDYfe25q .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxzDYfe25q .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxzDYfe25q .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxzDYfe25q .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxzDYfe25q .navbar-caption {
  color: #c7fcb5;
}
.cid-uxzDYfe25q .mbr-contact {
  color: #ffffff;
}
.cid-uxzDYfe25q .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxzDYfe25q .mbr-section-subtitle,
.cid-uxzDYfe25q .text_widget,
.cid-uxzDYfe25q .mbr-section-btn {
  text-align: center;
}
.cid-uxzDYfe25q a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxAo2b08rP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAo2b08rP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAo2b08rP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAo2b08rP .items-wrap {
  justify-content: space-between;
}
.cid-uxAo2b08rP .items-wrap .card {
  justify-content: center;
}
.cid-uxAo2b08rP .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxAo2b08rP .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxAo2b08rP .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxAo2b08rP .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAo2b08rP .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxAo2b08rP .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxAo2b08rP .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAo2b08rP .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAo2b08rP .image-wrapper img {
    height: 350px;
  }
}
.cid-uxAo2b08rP .mbr-desc {
  color: #000000;
}
.cid-uxAo2b08rP .mbr-section-title {
  color: #000000;
}
.cid-uxAo2b08rP .mbr-text {
  color: #000000;
}
.cid-uxzDYsCyb6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxzDYsCyb6 .wrapper {
  background: #ffffff;
}
.cid-uxzDYsCyb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzDYsCyb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzDYsCyb6 .mbr-section-title {
  color: #ffffff;
}
.cid-uxzDYsCyb6 .mbr-text {
  color: #000000;
}
.cid-uxzDYMSAsG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxzDYMSAsG .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxzDYMSAsG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxzDYMSAsG .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-uxzDYMSAsG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxzDYMSAsG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxzDYMSAsG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzDYMSAsG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzDYOYu9o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxzDYOYu9o .content {
    text-align: center;
  }
  .cid-uxzDYOYu9o .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxzDYOYu9o .logo-subtitle {
  color: #8d97ad;
}
.cid-uxzDYOYu9o .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxzDYOYu9o .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxzDYOYu9o .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxzDYOYu9o .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxzDYOYu9o .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxzDYOYu9o .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxzDYOYu9o .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxzDYOYu9o .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxzDYOYu9o .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxzDYOYu9o .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxzDYOYu9o .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxzDYOYu9o .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxzDYOYu9o .list-item {
  display: flex;
}
.cid-uxzDYOYu9o .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxzDYOYu9o ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxzDYOYu9o ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxzDYOYu9o ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxzDYOYu9o .column-title {
  color: #ffffff;
}
.cid-uxzDYOYu9o .mbr-text {
  color: #ffffff;
}
.cid-uxzDYOYu9o P {
  color: #ffffff;
}
.cid-uxzECldtCR {
  background-color: transparent;
}
.cid-uxzECldtCR .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxzECldtCR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxzECldtCR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxzECldtCR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxzECldtCR .menu_box .navbar.opened,
  .cid-uxzECldtCR .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxzECldtCR .navbar-dropdown {
  position: relative !important;
}
.cid-uxzECldtCR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxzECldtCR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxzECldtCR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxzECldtCR .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxzECldtCR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxzECldtCR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxzECldtCR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxzECldtCR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxzECldtCR .offcanvas-body .mbr-text,
  .cid-uxzECldtCR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxzECldtCR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxzECldtCR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxzECldtCR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxzECldtCR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxzECldtCR .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-uxzECldtCR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxzECldtCR 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-uxzECldtCR .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxzECldtCR .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxzECldtCR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxzECldtCR .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .nav-item {
    margin: 0 !important;
  }
}
.cid-uxzECldtCR .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxzECldtCR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxzECldtCR .nav-item .nav-link:hover,
.cid-uxzECldtCR .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxzECldtCR .nav-item .nav-link:hover:before,
.cid-uxzECldtCR .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxzECldtCR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxzECldtCR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxzECldtCR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxzECldtCR .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-uxzECldtCR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxzECldtCR .offcanvas_box {
    display: none;
  }
}
.cid-uxzECldtCR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxzECldtCR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxzECldtCR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxzECldtCR .container {
  display: flex;
  margin: auto;
}
.cid-uxzECldtCR .iconfont-wrapper {
  color: #ffffff;
  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-uxzECldtCR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxzECldtCR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxzECldtCR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxzECldtCR .navbar-nav {
    margin: 0;
  }
}
.cid-uxzECldtCR .dropdown-menu,
.cid-uxzECldtCR .navbar.opened {
  background-color: false !important;
}
.cid-uxzECldtCR .nav-item:focus,
.cid-uxzECldtCR .nav-link:focus {
  outline: none;
}
.cid-uxzECldtCR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxzECldtCR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxzECldtCR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxzECldtCR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxzECldtCR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxzECldtCR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxzECldtCR .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxzECldtCR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxzECldtCR .navbar.opened {
  transition: all 0.3s;
}
.cid-uxzECldtCR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxzECldtCR .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxzECldtCR .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxzECldtCR .navbar.collapsed {
  justify-content: center;
}
.cid-uxzECldtCR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxzECldtCR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxzECldtCR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxzECldtCR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxzECldtCR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxzECldtCR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxzECldtCR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxzECldtCR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxzECldtCR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxzECldtCR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxzECldtCR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxzECldtCR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxzECldtCR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxzECldtCR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxzECldtCR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxzECldtCR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxzECldtCR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxzECldtCR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxzECldtCR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxzECldtCR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxzECldtCR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxzECldtCR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxzECldtCR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxzECldtCR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxzECldtCR .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;
}
@media (min-width: 1440px) {
  .cid-uxzECldtCR .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxzECldtCR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxzECldtCR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxzECldtCR .dropdown-item.active,
.cid-uxzECldtCR .dropdown-item:active {
  background-color: transparent;
}
.cid-uxzECldtCR .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxzECldtCR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxzECldtCR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxzECldtCR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxzECldtCR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxzECldtCR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxzECldtCR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxzECldtCR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxzECldtCR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxzECldtCR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxzECldtCR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxzECldtCR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxzECldtCR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxzECldtCR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxzECldtCR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxzECldtCR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxzECldtCR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxzECldtCR .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-uxzECldtCR .navbar {
    height: 70px;
  }
  .cid-uxzECldtCR .navbar.opened {
    height: auto;
  }
  .cid-uxzECldtCR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxzECldtCR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxzECldtCR .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxzECldtCR .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxzECldtCR .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxzECldtCR .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxzECldtCR .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxzECldtCR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxzECldtCR .text_widget {
  margin-bottom: 32px;
}
.cid-uxzECldtCR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxzECldtCR .text_widget a:hover,
.cid-uxzECldtCR .text_widget a:focus {
  opacity: .8;
}
.cid-uxzECldtCR .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxzECldtCR .contacts-wrapper {
    display: none;
  }
}
.cid-uxzECldtCR .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxzECldtCR .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxzECldtCR .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxzECldtCR .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxzECldtCR .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxzECldtCR .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxzECldtCR .navbar-caption {
  color: #c7fcb5;
}
.cid-uxzECldtCR .mbr-contact {
  color: #ffffff;
}
.cid-uxzECldtCR .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxzECldtCR .mbr-section-subtitle,
.cid-uxzECldtCR .text_widget,
.cid-uxzECldtCR .mbr-section-btn {
  text-align: center;
}
.cid-uxzECldtCR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxAoDUAAKE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAoDUAAKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAoDUAAKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAoDUAAKE .items-wrap {
  justify-content: space-between;
}
.cid-uxAoDUAAKE .items-wrap .card {
  justify-content: center;
}
.cid-uxAoDUAAKE .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxAoDUAAKE .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxAoDUAAKE .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxAoDUAAKE .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAoDUAAKE .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxAoDUAAKE .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxAoDUAAKE .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAoDUAAKE .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAoDUAAKE .image-wrapper img {
    height: 350px;
  }
}
.cid-uxAoDUAAKE .mbr-desc {
  color: #000000;
}
.cid-uxAoDUAAKE .mbr-section-title {
  color: #000000;
}
.cid-uxAoDUAAKE .mbr-text {
  color: #000000;
}
.cid-uxzECnN4oB {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxzECnN4oB .wrapper {
  background: #ffffff;
}
.cid-uxzECnN4oB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzECnN4oB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzECnN4oB .mbr-section-title {
  color: #ffffff;
}
.cid-uxzECnN4oB .mbr-text {
  color: #000000;
}
.cid-uxzECoKD3R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxzECoKD3R .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxzECoKD3R .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxzECoKD3R .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-uxzECoKD3R .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxzECoKD3R .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxzECoKD3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxzECoKD3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxzECpGYV4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxzECpGYV4 .content {
    text-align: center;
  }
  .cid-uxzECpGYV4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxzECpGYV4 .logo-subtitle {
  color: #8d97ad;
}
.cid-uxzECpGYV4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxzECpGYV4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxzECpGYV4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxzECpGYV4 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxzECpGYV4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxzECpGYV4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxzECpGYV4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxzECpGYV4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxzECpGYV4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxzECpGYV4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxzECpGYV4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxzECpGYV4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxzECpGYV4 .list-item {
  display: flex;
}
.cid-uxzECpGYV4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxzECpGYV4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxzECpGYV4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxzECpGYV4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxzECpGYV4 .column-title {
  color: #ffffff;
}
.cid-uxzECpGYV4 .mbr-text {
  color: #ffffff;
}
.cid-uxzECpGYV4 P {
  color: #ffffff;
}
.cid-uxAsiC4xqc {
  background-color: transparent;
}
.cid-uxAsiC4xqc .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxAsiC4xqc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxAsiC4xqc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxAsiC4xqc .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxAsiC4xqc .menu_box .navbar.opened,
  .cid-uxAsiC4xqc .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxAsiC4xqc .navbar-dropdown {
  position: relative !important;
}
.cid-uxAsiC4xqc .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxAsiC4xqc .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxAsiC4xqc .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxAsiC4xqc .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxAsiC4xqc .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxAsiC4xqc .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxAsiC4xqc .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxAsiC4xqc .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxAsiC4xqc .offcanvas-body .mbr-text,
  .cid-uxAsiC4xqc .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxAsiC4xqc .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxAsiC4xqc .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxAsiC4xqc ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxAsiC4xqc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxAsiC4xqc .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-uxAsiC4xqc .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxAsiC4xqc 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-uxAsiC4xqc .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxAsiC4xqc .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxAsiC4xqc .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxAsiC4xqc .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .nav-item {
    margin: 0 !important;
  }
}
.cid-uxAsiC4xqc .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxAsiC4xqc .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxAsiC4xqc .nav-item .nav-link:hover,
.cid-uxAsiC4xqc .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxAsiC4xqc .nav-item .nav-link:hover:before,
.cid-uxAsiC4xqc .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxAsiC4xqc .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxAsiC4xqc .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxAsiC4xqc .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxAsiC4xqc .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-uxAsiC4xqc .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxAsiC4xqc .offcanvas_box {
    display: none;
  }
}
.cid-uxAsiC4xqc .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxAsiC4xqc .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxAsiC4xqc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxAsiC4xqc .container {
  display: flex;
  margin: auto;
}
.cid-uxAsiC4xqc .iconfont-wrapper {
  color: #ffffff;
  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-uxAsiC4xqc .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxAsiC4xqc .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxAsiC4xqc .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxAsiC4xqc .navbar-nav {
    margin: 0;
  }
}
.cid-uxAsiC4xqc .dropdown-menu,
.cid-uxAsiC4xqc .navbar.opened {
  background-color: false !important;
}
.cid-uxAsiC4xqc .nav-item:focus,
.cid-uxAsiC4xqc .nav-link:focus {
  outline: none;
}
.cid-uxAsiC4xqc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxAsiC4xqc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxAsiC4xqc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxAsiC4xqc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxAsiC4xqc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxAsiC4xqc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxAsiC4xqc .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxAsiC4xqc .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxAsiC4xqc .navbar.opened {
  transition: all 0.3s;
}
.cid-uxAsiC4xqc .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxAsiC4xqc .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxAsiC4xqc .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxAsiC4xqc .navbar.collapsed {
  justify-content: center;
}
.cid-uxAsiC4xqc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxAsiC4xqc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxAsiC4xqc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxAsiC4xqc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxAsiC4xqc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxAsiC4xqc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxAsiC4xqc .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxAsiC4xqc .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxAsiC4xqc .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxAsiC4xqc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxAsiC4xqc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxAsiC4xqc .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxAsiC4xqc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxAsiC4xqc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxAsiC4xqc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxAsiC4xqc .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxAsiC4xqc .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxAsiC4xqc .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxAsiC4xqc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxAsiC4xqc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxAsiC4xqc .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxAsiC4xqc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxAsiC4xqc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxAsiC4xqc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxAsiC4xqc .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;
}
@media (min-width: 1440px) {
  .cid-uxAsiC4xqc .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxAsiC4xqc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxAsiC4xqc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxAsiC4xqc .dropdown-item.active,
.cid-uxAsiC4xqc .dropdown-item:active {
  background-color: transparent;
}
.cid-uxAsiC4xqc .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxAsiC4xqc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxAsiC4xqc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxAsiC4xqc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxAsiC4xqc ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxAsiC4xqc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxAsiC4xqc button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxAsiC4xqc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxAsiC4xqc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxAsiC4xqc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxAsiC4xqc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxAsiC4xqc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxAsiC4xqc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxAsiC4xqc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxAsiC4xqc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxAsiC4xqc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxAsiC4xqc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxAsiC4xqc .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-uxAsiC4xqc .navbar {
    height: 70px;
  }
  .cid-uxAsiC4xqc .navbar.opened {
    height: auto;
  }
  .cid-uxAsiC4xqc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxAsiC4xqc .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxAsiC4xqc .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxAsiC4xqc .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxAsiC4xqc .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxAsiC4xqc .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxAsiC4xqc .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxAsiC4xqc .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxAsiC4xqc .text_widget {
  margin-bottom: 32px;
}
.cid-uxAsiC4xqc .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxAsiC4xqc .text_widget a:hover,
.cid-uxAsiC4xqc .text_widget a:focus {
  opacity: .8;
}
.cid-uxAsiC4xqc .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxAsiC4xqc .contacts-wrapper {
    display: none;
  }
}
.cid-uxAsiC4xqc .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxAsiC4xqc .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxAsiC4xqc .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxAsiC4xqc .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxAsiC4xqc .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxAsiC4xqc .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxAsiC4xqc .navbar-caption {
  color: #c7fcb5;
}
.cid-uxAsiC4xqc .mbr-contact {
  color: #ffffff;
}
.cid-uxAsiC4xqc .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxAsiC4xqc .mbr-section-subtitle,
.cid-uxAsiC4xqc .text_widget,
.cid-uxAsiC4xqc .mbr-section-btn {
  text-align: center;
}
.cid-uxAsiC4xqc a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxAsiE3Ufb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiE3Ufb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiE3Ufb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiE3Ufb .items-wrap {
  justify-content: space-between;
}
.cid-uxAsiE3Ufb .items-wrap .card {
  justify-content: center;
}
.cid-uxAsiE3Ufb .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxAsiE3Ufb .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxAsiE3Ufb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiE3Ufb .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAsiE3Ufb .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxAsiE3Ufb .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiE3Ufb .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxAsiE3Ufb .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAsiE3Ufb .image-wrapper img {
    height: 350px;
  }
}
.cid-uxAsiE3Ufb .mbr-desc {
  color: #000000;
}
.cid-uxAsiE3Ufb .mbr-section-title {
  color: #000000;
}
.cid-uxAsiE3Ufb .mbr-text {
  color: #000000;
}
.cid-uxAsiFeXZZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiFeXZZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uxAsiFeXZZ .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uxAsiFeXZZ .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb18a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uxAsiFeXZZ .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uxAsiFeXZZ .mbr-text {
  color: #000000;
}
.cid-uxAsiGpEVU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxAsiGpEVU .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uxAsiGpEVU .mbr-text {
  line-height: 1.5;
  color: #000000;
}
.cid-uxAsiGpEVU .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-uxAsiGpEVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiGpEVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiHyZHO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiHyZHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiHyZHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiHyZHO .row {
  justify-content: flex-start;
}
.cid-uxAsiHyZHO .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uxAsiHyZHO .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxAsiHyZHO .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uxAsiHyZHO .image-wrapper {
  width: 100%;
}
.cid-uxAsiHyZHO .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uxAsiHyZHO .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uxAsiHyZHO .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxAsiHyZHO .mbr-text {
    margin-top: 45px;
  }
}
.cid-uxAsiHyZHO .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uxAsiHyZHO .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uxAsiHyZHO .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uxAsiHyZHO .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uxAsiHyZHO .mbr-text,
.cid-uxAsiHyZHO .mbr-section-btn {
  color: #000000;
}
.cid-uxAsiIJUmH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxAsiIJUmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiIJUmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiIJUmH .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #f50d0d;
  margin-bottom: 3rem;
}
.cid-uxAsiIJUmH b,
.cid-uxAsiIJUmH strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-uxAsiIJUmH .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-uxAsiIJUmH .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-uxAsiIJUmH .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-uxAsiIJUmH .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-uxAsiIJUmH .card {
  padding: 0;
}
.cid-uxAsiIJUmH .container-fluid {
  padding: 0;
}
.cid-uxAsiIJUmH .container-fluid .row {
  margin: 0;
}
.cid-uxAsiIJUmH .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-uxAsiIJUmH .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxAsiIJUmH .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-uxAsiIJUmH .card1 {
  background: #ffb18a;
}
.cid-uxAsiIJUmH .card2 {
  background: #ffb18a;
}
.cid-uxAsiIJUmH .card3 {
  background: #ffb18a;
}
.cid-uxAsiIJUmH .card-text,
.cid-uxAsiIJUmH .mbr-section-btn,
.cid-uxAsiIJUmH .social-row {
  color: #17003b;
  text-align: center;
}
.cid-uxAsiIJUmH .card-title,
.cid-uxAsiIJUmH .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uxAsiIJUmH .mbr-link,
.cid-uxAsiIJUmH .content-wrap,
.cid-uxAsiIJUmH path {
  color: #17003b;
  text-align: center;
}
.cid-uxAsiKzWvm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiKzWvm .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxAsiKzWvm .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxAsiKzWvm .col-title,
.cid-uxAsiKzWvm .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxAsiKzWvm .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxAsiKzWvm .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAsiKzWvm .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxAsiKzWvm .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxAsiKzWvm .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxAsiKzWvm .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAsiLGeB3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxAsiLGeB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiLGeB3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiLGeB3 .container {
  max-width: 1600px;
}
.cid-uxAsiLGeB3 .row {
  justify-content: left;
}
.cid-uxAsiLGeB3 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-uxAsiLGeB3 .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-uxAsiLGeB3 .title-container {
    margin-bottom: 50px;
  }
}
.cid-uxAsiLGeB3 .mbr-section-title {
  color: #000000;
}
.cid-uxAsiLGeB3 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uxAsiLGeB3 .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-uxAsiLGeB3 .img-container {
    height: 350px;
  }
}
.cid-uxAsiLGeB3 .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uxAsiLGeB3 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uxAsiLGeB3 .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-uxAsiLGeB3 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uxAsiN2dIP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiN2dIP .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxAsiN2dIP .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxAsiN2dIP .col-title,
.cid-uxAsiN2dIP .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxAsiN2dIP .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxAsiN2dIP .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAsiN2dIP .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxAsiN2dIP .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxAsiN2dIP .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxAsiN2dIP .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAsiOfwuv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffb18a;
}
.cid-uxAsiOfwuv .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uxAsiOfwuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiOfwuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiOfwuv .content-wrap {
  margin: 0;
}
.cid-uxAsiOfwuv .content-wrap .card {
  padding: 0;
}
.cid-uxAsiOfwuv .content-wrapper {
  padding: 40px 72px;
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uxAsiOfwuv .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiOfwuv .content-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiOfwuv .content-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uxAsiOfwuv .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper {
  border-bottom: none;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
  flex-wrap: wrap;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 16px;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #000000;
  padding: 16px 25px;
  border: 2px solid #000000;
  box-shadow: 4px 3px 0 0 #000000;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxAsiOfwuv .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffb18a;
}
.cid-uxAsiOfwuv .tab-content {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uxAsiOfwuv .tab-content {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiOfwuv .tab-content {
    padding: 40px 0;
  }
}
.cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .image-wrap img {
    height: 350px;
  }
}
.cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uxAsiOfwuv .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uxAsiOfwuv .mbr-section-title {
  color: #150764;
}
.cid-uxAsiOfwuv .item-title {
  color: #000000;
}
.cid-uxAsiOfwuv .item-text {
  color: #150764;
}
.cid-uxAsiOfwuv .mbr-section-title,
.cid-uxAsiOfwuv .tabs-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uxAsiQmgdl {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-uxAsiQmgdl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiQmgdl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiQmgdl .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uxAsiQmgdl .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uxAsiQmgdl .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxAsiQmgdl .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-uxAsiQmgdl .content-container {
    padding: 0 20px;
  }
}
.cid-uxAsiQmgdl .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-uxAsiQmgdl .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uxAsiQmgdl .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .image-wrapper img {
    max-width: 100%;
  }
}
.cid-uxAsiQmgdl .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-uxAsiQmgdl .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxAsiQmgdl .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .mbr-text {
    text-align: center !important;
  }
}
.cid-uxAsiQmgdl .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uxAsiQmgdl .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uxAsiQmgdl .mbr-text,
.cid-uxAsiQmgdl .mbr-section-btn {
  color: #000000;
}
.cid-uxAsiRRPNT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uxAsiRRPNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiRRPNT .col-12 {
  padding: 0;
}
.cid-uxAsiRRPNT .row {
  margin: 0;
}
.cid-uxAsiRRPNT .card-wrapper {
  border: 1px solid #f50d0d;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uxAsiRRPNT .card-wrapper {
    padding: 1rem;
  }
}
.cid-uxAsiRRPNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiRRPNT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxAsiRRPNT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxAsiRRPNT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxAsiRRPNT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxAsiRRPNT .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxAsiRRPNT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxAsiRRPNT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxAsiRRPNT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxAsiRRPNT .mbr-text,
.cid-uxAsiRRPNT .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uxAsiT7irT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiT7irT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiT7irT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiT7irT .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uxAsiT7irT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiT7irT .container {
    padding: 0 26px;
  }
}
.cid-uxAsiT7irT .row {
  justify-content: center;
}
.cid-uxAsiT7irT .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffb18a;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uxAsiT7irT .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiT7irT .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uxAsiT7irT .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uxAsiT7irT .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uxAsiT7irT .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uxAsiT7irT .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uxAsiT7irT .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uxAsiT7irT .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uxAsiT7irT .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uxAsiT7irT .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uxAsiT7irT .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uxAsiT7irT .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uxAsiT7irT .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uxAsiT7irT .mbr-section-title {
  color: #000000;
}
.cid-uxAsiT7irT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxAsiT7irT .mbr-desc {
  color: #ffffff;
}
.cid-uxAsiT7irT .mbr-text {
  color: #000000;
}
.cid-uxAsiT7irT .mbr-link {
  color: #ffffff;
}
.cid-uxAsiUmOg4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiUmOg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiUmOg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsiUmOg4 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uxAsiUmOg4 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxAsiUmOg4 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uxAsiUmOg4 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxAsiUmOg4 .container {
    padding: 0 16px;
  }
}
.cid-uxAsiUmOg4 .row {
  justify-content: center;
}
.cid-uxAsiUmOg4 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxAsiUmOg4 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxAsiUmOg4 .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uxAsiUmOg4 .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uxAsiUmOg4 .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uxAsiUmOg4 .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uxAsiUmOg4 .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uxAsiUmOg4 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxAsiUmOg4 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uxAsiUmOg4 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxAsiUmOg4 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uxAsiUmOg4 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uxAsiUmOg4 .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uxAsiUmOg4 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uxAsiUmOg4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxAsiUmOg4 .panel-title {
  color: #000000;
}
.cid-uxAsiUmOg4 .panel-text {
  color: #000000;
}
.cid-uxAsiVUyqN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uxAsiVUyqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiVUyqN .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-uxAsiVUyqN .container {
    padding: 0 20px;
  }
}
.cid-uxAsiVUyqN .row {
  margin: 0;
}
.cid-uxAsiVUyqN .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxAsiVUyqN .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxAsiVUyqN .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uxAsiVUyqN .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uxAsiVUyqN .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uxAsiVUyqN .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uxAsiVUyqN .mbr-section-title {
  color: #ffffff;
}
.cid-uxAsiXekyW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxAsiXekyW .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uxAsiXekyW .content_wrapper:hover .mbr-section-title a {
  color: #ff57be !important;
}
.cid-uxAsiXekyW .mbr-section-title {
  margin-bottom: 12px;
  color: #000000;
}
.cid-uxAsiXekyW .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uxAsiXekyW .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uxAsiXekyW .mbr-section-btn .btn-secondary-outline:hover,
.cid-uxAsiXekyW .mbr-section-btn .btn-secondary-outline .active,
.cid-uxAsiXekyW .mbr-section-btn .btn-secondary-outline:focus {
  color: #f50d0d !important;
}
.cid-uxAsiXekyW .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uxAsiXekyW .image_post {
  display: inline-block;
}
.cid-uxAsiXekyW .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uxAsiXekyW .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uxAsiXekyW .mbr-text,
.cid-uxAsiXekyW .mbr-section-btn {
  color: #000000;
}
.cid-uxGWfUbhuq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxGWfUbhuq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWfUbhuq .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-uxGWfUbhuq .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uxGWfUbhuq .container {
    padding: 0 4px;
  }
}
.cid-uxGWfUbhuq .row {
  margin: 0;
}
.cid-uxGWfUbhuq .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWfUbhuq .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGWfUbhuq .row .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0 !important;
}
.cid-uxGWfUbhuq .row .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-uxGWfUbhuq .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uxGWfUbhuq .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uxGWfUbhuq .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uxGWfUbhuq .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxGWfUbhuq .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uxGWfUbhuq .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWfUbhuq .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uxGWfUbhuq .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWfUbhuq .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uxGWfUbhuq .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uxGWfUbhuq .panel-title-edit,
.cid-uxGWfUbhuq .mbr-iconfont {
  color: #ffffff;
}
.cid-uxGWfUbhuq .mbr-text {
  color: #ffffff;
}
.cid-uxAsiYGt3m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxAsiYGt3m .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxAsiYGt3m .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxAsiYGt3m .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-uxAsiYGt3m .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxAsiYGt3m .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxAsiYGt3m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxAsiYGt3m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxAsj075va {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxAsj075va .content {
    text-align: center;
  }
  .cid-uxAsj075va .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxAsj075va .logo-subtitle {
  color: #8d97ad;
}
.cid-uxAsj075va .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxAsj075va .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxAsj075va .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxAsj075va .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxAsj075va .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxAsj075va .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxAsj075va .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxAsj075va .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxAsj075va .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxAsj075va .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxAsj075va .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxAsj075va .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxAsj075va .list-item {
  display: flex;
}
.cid-uxAsj075va .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxAsj075va ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxAsj075va ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxAsj075va ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxAsj075va .column-title {
  color: #ffffff;
}
.cid-uxAsj075va .mbr-text {
  color: #ffffff;
}
.cid-uxAsj075va P {
  color: #ffffff;
}
.cid-uxGWyyJrRw {
  background-color: transparent;
}
.cid-uxGWyyJrRw .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxGWyyJrRw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxGWyyJrRw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxGWyyJrRw .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxGWyyJrRw .menu_box .navbar.opened,
  .cid-uxGWyyJrRw .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxGWyyJrRw .navbar-dropdown {
  position: relative !important;
}
.cid-uxGWyyJrRw .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxGWyyJrRw .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxGWyyJrRw .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxGWyyJrRw .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxGWyyJrRw .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxGWyyJrRw .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxGWyyJrRw .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxGWyyJrRw .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxGWyyJrRw .offcanvas-body .mbr-text,
  .cid-uxGWyyJrRw .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxGWyyJrRw .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxGWyyJrRw .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxGWyyJrRw ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxGWyyJrRw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxGWyyJrRw .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-uxGWyyJrRw .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxGWyyJrRw 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-uxGWyyJrRw .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxGWyyJrRw .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxGWyyJrRw .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxGWyyJrRw .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .nav-item {
    margin: 0 !important;
  }
}
.cid-uxGWyyJrRw .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxGWyyJrRw .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGWyyJrRw .nav-item .nav-link:hover,
.cid-uxGWyyJrRw .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxGWyyJrRw .nav-item .nav-link:hover:before,
.cid-uxGWyyJrRw .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxGWyyJrRw .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxGWyyJrRw .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxGWyyJrRw .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxGWyyJrRw .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-uxGWyyJrRw .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxGWyyJrRw .offcanvas_box {
    display: none;
  }
}
.cid-uxGWyyJrRw .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxGWyyJrRw .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxGWyyJrRw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxGWyyJrRw .container {
  display: flex;
  margin: auto;
}
.cid-uxGWyyJrRw .iconfont-wrapper {
  color: #ffffff;
  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-uxGWyyJrRw .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxGWyyJrRw .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxGWyyJrRw .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxGWyyJrRw .navbar-nav {
    margin: 0;
  }
}
.cid-uxGWyyJrRw .dropdown-menu,
.cid-uxGWyyJrRw .navbar.opened {
  background-color: false !important;
}
.cid-uxGWyyJrRw .nav-item:focus,
.cid-uxGWyyJrRw .nav-link:focus {
  outline: none;
}
.cid-uxGWyyJrRw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxGWyyJrRw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxGWyyJrRw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxGWyyJrRw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxGWyyJrRw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxGWyyJrRw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxGWyyJrRw .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxGWyyJrRw .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxGWyyJrRw .navbar.opened {
  transition: all 0.3s;
}
.cid-uxGWyyJrRw .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxGWyyJrRw .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxGWyyJrRw .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxGWyyJrRw .navbar.collapsed {
  justify-content: center;
}
.cid-uxGWyyJrRw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxGWyyJrRw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxGWyyJrRw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxGWyyJrRw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxGWyyJrRw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxGWyyJrRw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxGWyyJrRw .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGWyyJrRw .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxGWyyJrRw .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxGWyyJrRw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxGWyyJrRw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxGWyyJrRw .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxGWyyJrRw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxGWyyJrRw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxGWyyJrRw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxGWyyJrRw .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxGWyyJrRw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxGWyyJrRw .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxGWyyJrRw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxGWyyJrRw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxGWyyJrRw .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxGWyyJrRw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxGWyyJrRw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxGWyyJrRw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxGWyyJrRw .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;
}
@media (min-width: 1440px) {
  .cid-uxGWyyJrRw .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxGWyyJrRw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxGWyyJrRw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxGWyyJrRw .dropdown-item.active,
.cid-uxGWyyJrRw .dropdown-item:active {
  background-color: transparent;
}
.cid-uxGWyyJrRw .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxGWyyJrRw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxGWyyJrRw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxGWyyJrRw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxGWyyJrRw ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxGWyyJrRw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxGWyyJrRw button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxGWyyJrRw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxGWyyJrRw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxGWyyJrRw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxGWyyJrRw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxGWyyJrRw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxGWyyJrRw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxGWyyJrRw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxGWyyJrRw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxGWyyJrRw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxGWyyJrRw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxGWyyJrRw .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-uxGWyyJrRw .navbar {
    height: 70px;
  }
  .cid-uxGWyyJrRw .navbar.opened {
    height: auto;
  }
  .cid-uxGWyyJrRw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxGWyyJrRw .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxGWyyJrRw .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxGWyyJrRw .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxGWyyJrRw .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxGWyyJrRw .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxGWyyJrRw .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxGWyyJrRw .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxGWyyJrRw .text_widget {
  margin-bottom: 32px;
}
.cid-uxGWyyJrRw .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxGWyyJrRw .text_widget a:hover,
.cid-uxGWyyJrRw .text_widget a:focus {
  opacity: .8;
}
.cid-uxGWyyJrRw .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxGWyyJrRw .contacts-wrapper {
    display: none;
  }
}
.cid-uxGWyyJrRw .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxGWyyJrRw .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxGWyyJrRw .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGWyyJrRw .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxGWyyJrRw .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxGWyyJrRw .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxGWyyJrRw .navbar-caption {
  color: #c7fcb5;
}
.cid-uxGWyyJrRw .mbr-contact {
  color: #ffffff;
}
.cid-uxGWyyJrRw .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxGWyyJrRw .mbr-section-subtitle,
.cid-uxGWyyJrRw .text_widget,
.cid-uxGWyyJrRw .mbr-section-btn {
  text-align: center;
}
.cid-uxGWyyJrRw a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxGWyADJBW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyADJBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyADJBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyADJBW .items-wrap {
  justify-content: space-between;
}
.cid-uxGWyADJBW .items-wrap .card {
  justify-content: center;
}
.cid-uxGWyADJBW .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxGWyADJBW .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxGWyADJBW .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyADJBW .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxGWyADJBW .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxGWyADJBW .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyADJBW .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxGWyADJBW .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxGWyADJBW .image-wrapper img {
    height: 350px;
  }
}
.cid-uxGWyADJBW .mbr-desc {
  color: #000000;
}
.cid-uxGWyADJBW .mbr-section-title {
  color: #000000;
}
.cid-uxGWyADJBW .mbr-text {
  color: #000000;
}
.cid-uxGWyC6wTt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyC6wTt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uxGWyC6wTt .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uxGWyC6wTt .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb18a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uxGWyC6wTt .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uxGWyC6wTt .mbr-text {
  color: #000000;
}
.cid-uxGWyD21AF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxGWyD21AF .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uxGWyD21AF .mbr-text {
  line-height: 1.5;
  color: #000000;
}
.cid-uxGWyD21AF .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-uxGWyD21AF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyD21AF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyDVwjT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyDVwjT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyDVwjT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyDVwjT .row {
  justify-content: flex-start;
}
.cid-uxGWyDVwjT .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uxGWyDVwjT .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxGWyDVwjT .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uxGWyDVwjT .image-wrapper {
  width: 100%;
}
.cid-uxGWyDVwjT .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uxGWyDVwjT .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uxGWyDVwjT .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxGWyDVwjT .mbr-text {
    margin-top: 45px;
  }
}
.cid-uxGWyDVwjT .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uxGWyDVwjT .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uxGWyDVwjT .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uxGWyDVwjT .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uxGWyDVwjT .mbr-text,
.cid-uxGWyDVwjT .mbr-section-btn {
  color: #000000;
}
.cid-uxGWyEVeWA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxGWyEVeWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyEVeWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyEVeWA .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #f50d0d;
  margin-bottom: 3rem;
}
.cid-uxGWyEVeWA b,
.cid-uxGWyEVeWA strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-uxGWyEVeWA .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-uxGWyEVeWA .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-uxGWyEVeWA .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-uxGWyEVeWA .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-uxGWyEVeWA .card {
  padding: 0;
}
.cid-uxGWyEVeWA .container-fluid {
  padding: 0;
}
.cid-uxGWyEVeWA .container-fluid .row {
  margin: 0;
}
.cid-uxGWyEVeWA .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-uxGWyEVeWA .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxGWyEVeWA .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-uxGWyEVeWA .card1 {
  background: #ffb18a;
}
.cid-uxGWyEVeWA .card2 {
  background: #ffb18a;
}
.cid-uxGWyEVeWA .card3 {
  background: #ffb18a;
}
.cid-uxGWyEVeWA .card-text,
.cid-uxGWyEVeWA .mbr-section-btn,
.cid-uxGWyEVeWA .social-row {
  color: #17003b;
  text-align: center;
}
.cid-uxGWyEVeWA .card-title,
.cid-uxGWyEVeWA .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uxGWyEVeWA .mbr-link,
.cid-uxGWyEVeWA .content-wrap,
.cid-uxGWyEVeWA path {
  color: #17003b;
  text-align: center;
}
.cid-uxGWyGtkxZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyGtkxZ .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGWyGtkxZ .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxGWyGtkxZ .col-title,
.cid-uxGWyGtkxZ .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxGWyGtkxZ .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxGWyGtkxZ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGWyGtkxZ .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxGWyGtkxZ .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxGWyGtkxZ .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxGWyGtkxZ .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGWyHuos0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxGWyHuos0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyHuos0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyHuos0 .container {
  max-width: 1600px;
}
.cid-uxGWyHuos0 .row {
  justify-content: left;
}
.cid-uxGWyHuos0 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-uxGWyHuos0 .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-uxGWyHuos0 .title-container {
    margin-bottom: 50px;
  }
}
.cid-uxGWyHuos0 .mbr-section-title {
  color: #ffffff;
}
.cid-uxGWyHuos0 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uxGWyHuos0 .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-uxGWyHuos0 .img-container {
    height: 350px;
  }
}
.cid-uxGWyHuos0 .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uxGWyHuos0 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uxGWyHuos0 .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-uxGWyHuos0 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uxGWyIAIzN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyIAIzN .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGWyIAIzN .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxGWyIAIzN .col-title,
.cid-uxGWyIAIzN .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxGWyIAIzN .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxGWyIAIzN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGWyIAIzN .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxGWyIAIzN .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxGWyIAIzN .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxGWyIAIzN .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGWyJBjMd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffb18a;
}
.cid-uxGWyJBjMd .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uxGWyJBjMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyJBjMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyJBjMd .content-wrap {
  margin: 0;
}
.cid-uxGWyJBjMd .content-wrap .card {
  padding: 0;
}
.cid-uxGWyJBjMd .content-wrapper {
  padding: 40px 72px;
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uxGWyJBjMd .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyJBjMd .content-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyJBjMd .content-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uxGWyJBjMd .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper {
  border-bottom: none;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
  flex-wrap: wrap;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 16px;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #000000;
  padding: 16px 25px;
  border: 2px solid #000000;
  box-shadow: 4px 3px 0 0 #000000;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGWyJBjMd .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffb18a;
}
.cid-uxGWyJBjMd .tab-content {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uxGWyJBjMd .tab-content {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyJBjMd .tab-content {
    padding: 40px 0;
  }
}
.cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .image-wrap img {
    height: 350px;
  }
}
.cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uxGWyJBjMd .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uxGWyJBjMd .mbr-section-title {
  color: #150764;
}
.cid-uxGWyJBjMd .item-title {
  color: #ffffff;
}
.cid-uxGWyJBjMd .item-text {
  color: #150764;
}
.cid-uxGWyJBjMd .mbr-section-title,
.cid-uxGWyJBjMd .tabs-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uxGWyKY82U {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-uxGWyKY82U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyKY82U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyKY82U .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uxGWyKY82U .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uxGWyKY82U .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxGWyKY82U .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-uxGWyKY82U .content-container {
    padding: 0 20px;
  }
}
.cid-uxGWyKY82U .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-uxGWyKY82U .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uxGWyKY82U .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .image-wrapper img {
    max-width: 100%;
  }
}
.cid-uxGWyKY82U .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-uxGWyKY82U .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGWyKY82U .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGWyKY82U .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uxGWyKY82U .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uxGWyKY82U .mbr-text,
.cid-uxGWyKY82U .mbr-section-btn {
  color: #000000;
}
.cid-uxGWyM6TiB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uxGWyM6TiB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyM6TiB .col-12 {
  padding: 0;
}
.cid-uxGWyM6TiB .row {
  margin: 0;
}
.cid-uxGWyM6TiB .card-wrapper {
  border: 1px solid #f50d0d;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uxGWyM6TiB .card-wrapper {
    padding: 1rem;
  }
}
.cid-uxGWyM6TiB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyM6TiB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxGWyM6TiB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxGWyM6TiB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxGWyM6TiB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxGWyM6TiB .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxGWyM6TiB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxGWyM6TiB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxGWyM6TiB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxGWyM6TiB .mbr-text,
.cid-uxGWyM6TiB .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uxGWyNp80r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyNp80r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyNp80r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyNp80r .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uxGWyNp80r .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyNp80r .container {
    padding: 0 26px;
  }
}
.cid-uxGWyNp80r .row {
  justify-content: center;
}
.cid-uxGWyNp80r .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffb18a;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uxGWyNp80r .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyNp80r .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uxGWyNp80r .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uxGWyNp80r .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uxGWyNp80r .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uxGWyNp80r .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uxGWyNp80r .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uxGWyNp80r .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uxGWyNp80r .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uxGWyNp80r .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uxGWyNp80r .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uxGWyNp80r .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uxGWyNp80r .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uxGWyNp80r .mbr-section-title {
  color: #ffffff;
}
.cid-uxGWyNp80r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxGWyNp80r .mbr-desc {
  color: #ffffff;
}
.cid-uxGWyNp80r .mbr-text {
  color: #ffffff;
}
.cid-uxGWyNp80r .mbr-link {
  color: #ffffff;
}
.cid-uxGWyOB0TY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyOB0TY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyOB0TY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWyOB0TY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uxGWyOB0TY .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxGWyOB0TY .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uxGWyOB0TY .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxGWyOB0TY .container {
    padding: 0 16px;
  }
}
.cid-uxGWyOB0TY .row {
  justify-content: center;
}
.cid-uxGWyOB0TY .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWyOB0TY .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGWyOB0TY .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uxGWyOB0TY .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uxGWyOB0TY .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uxGWyOB0TY .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uxGWyOB0TY .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uxGWyOB0TY .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxGWyOB0TY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uxGWyOB0TY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxGWyOB0TY .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uxGWyOB0TY .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uxGWyOB0TY .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uxGWyOB0TY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uxGWyOB0TY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxGWyOB0TY .panel-title {
  color: #000000;
}
.cid-uxGWyOB0TY .panel-text {
  color: #000000;
}
.cid-uxGWyQdO9D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uxGWyQdO9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyQdO9D .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-uxGWyQdO9D .container {
    padding: 0 20px;
  }
}
.cid-uxGWyQdO9D .row {
  margin: 0;
}
.cid-uxGWyQdO9D .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWyQdO9D .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGWyQdO9D .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uxGWyQdO9D .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uxGWyQdO9D .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uxGWyQdO9D .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uxGWyQdO9D .mbr-section-title {
  color: #ffffff;
}
.cid-uxGWyRCBvQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGWyRCBvQ .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uxGWyRCBvQ .content_wrapper:hover .mbr-section-title a {
  color: #ff57be !important;
}
.cid-uxGWyRCBvQ .mbr-section-title {
  margin-bottom: 12px;
  color: #000000;
}
.cid-uxGWyRCBvQ .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uxGWyRCBvQ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uxGWyRCBvQ .mbr-section-btn .btn-secondary-outline:hover,
.cid-uxGWyRCBvQ .mbr-section-btn .btn-secondary-outline .active,
.cid-uxGWyRCBvQ .mbr-section-btn .btn-secondary-outline:focus {
  color: #f50d0d !important;
}
.cid-uxGWyRCBvQ .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uxGWyRCBvQ .image_post {
  display: inline-block;
}
.cid-uxGWyRCBvQ .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uxGWyRCBvQ .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uxGWyRCBvQ .mbr-text,
.cid-uxGWyRCBvQ .mbr-section-btn {
  color: #000000;
}
.cid-uxGWyY3976 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxGWyY3976 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyY3976 .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-uxGWyY3976 .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uxGWyY3976 .container {
    padding: 0 4px;
  }
}
.cid-uxGWyY3976 .row {
  margin: 0;
}
.cid-uxGWyY3976 .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWyY3976 .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGWyY3976 .row .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0 !important;
}
.cid-uxGWyY3976 .row .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-uxGWyY3976 .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uxGWyY3976 .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uxGWyY3976 .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uxGWyY3976 .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxGWyY3976 .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uxGWyY3976 .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWyY3976 .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uxGWyY3976 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGWyY3976 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uxGWyY3976 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uxGWyY3976 .panel-title-edit,
.cid-uxGWyY3976 .mbr-iconfont {
  color: #ffffff;
}
.cid-uxGWyY3976 .mbr-text {
  color: #ffffff;
}
.cid-uxGWyZhWhE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxGWyZhWhE .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxGWyZhWhE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxGWyZhWhE .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-uxGWyZhWhE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxGWyZhWhE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxGWyZhWhE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGWyZhWhE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGWz0BEl1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxGWz0BEl1 .content {
    text-align: center;
  }
  .cid-uxGWz0BEl1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxGWz0BEl1 .logo-subtitle {
  color: #8d97ad;
}
.cid-uxGWz0BEl1 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxGWz0BEl1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxGWz0BEl1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxGWz0BEl1 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxGWz0BEl1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxGWz0BEl1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxGWz0BEl1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxGWz0BEl1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxGWz0BEl1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxGWz0BEl1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxGWz0BEl1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxGWz0BEl1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxGWz0BEl1 .list-item {
  display: flex;
}
.cid-uxGWz0BEl1 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxGWz0BEl1 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxGWz0BEl1 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxGWz0BEl1 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxGWz0BEl1 .column-title {
  color: #ffffff;
}
.cid-uxGWz0BEl1 .mbr-text {
  color: #ffffff;
}
.cid-uxGWz0BEl1 P {
  color: #ffffff;
}
.cid-uxGYQHku2j {
  background-color: transparent;
}
.cid-uxGYQHku2j .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uxGYQHku2j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uxGYQHku2j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxGYQHku2j .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uxGYQHku2j .menu_box .navbar.opened,
  .cid-uxGYQHku2j .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uxGYQHku2j .navbar-dropdown {
  position: relative !important;
}
.cid-uxGYQHku2j .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uxGYQHku2j .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uxGYQHku2j .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uxGYQHku2j .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #eaffe2;
  }
  .cid-uxGYQHku2j .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uxGYQHku2j .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uxGYQHku2j .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uxGYQHku2j .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uxGYQHku2j .offcanvas-body .mbr-text,
  .cid-uxGYQHku2j .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uxGYQHku2j .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #144031;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uxGYQHku2j .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uxGYQHku2j ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uxGYQHku2j .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxGYQHku2j .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-uxGYQHku2j .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uxGYQHku2j 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-uxGYQHku2j .lg_brand {
    margin: 0 1rem;
  }
  .cid-uxGYQHku2j .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
  }
}
.cid-uxGYQHku2j .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uxGYQHku2j .nav-item {
    margin: 4px 25px;
  }
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .nav-item {
    margin: 0 !important;
  }
}
.cid-uxGYQHku2j .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uxGYQHku2j .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGYQHku2j .nav-item .nav-link:hover,
.cid-uxGYQHku2j .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uxGYQHku2j .nav-item .nav-link:hover:before,
.cid-uxGYQHku2j .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uxGYQHku2j .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uxGYQHku2j .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uxGYQHku2j .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uxGYQHku2j .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-uxGYQHku2j .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uxGYQHku2j .offcanvas_box {
    display: none;
  }
}
.cid-uxGYQHku2j .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uxGYQHku2j .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uxGYQHku2j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uxGYQHku2j .container {
  display: flex;
  margin: auto;
}
.cid-uxGYQHku2j .iconfont-wrapper {
  color: #ffffff;
  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-uxGYQHku2j .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uxGYQHku2j .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uxGYQHku2j .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uxGYQHku2j .navbar-nav {
    margin: 0;
  }
}
.cid-uxGYQHku2j .dropdown-menu,
.cid-uxGYQHku2j .navbar.opened {
  background-color: false !important;
}
.cid-uxGYQHku2j .nav-item:focus,
.cid-uxGYQHku2j .nav-link:focus {
  outline: none;
}
.cid-uxGYQHku2j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxGYQHku2j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxGYQHku2j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxGYQHku2j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxGYQHku2j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxGYQHku2j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxGYQHku2j .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uxGYQHku2j .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uxGYQHku2j .navbar.opened {
  transition: all 0.3s;
}
.cid-uxGYQHku2j .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uxGYQHku2j .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uxGYQHku2j .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uxGYQHku2j .navbar.collapsed {
  justify-content: center;
}
.cid-uxGYQHku2j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxGYQHku2j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uxGYQHku2j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxGYQHku2j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxGYQHku2j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxGYQHku2j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uxGYQHku2j .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGYQHku2j .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uxGYQHku2j .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uxGYQHku2j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxGYQHku2j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxGYQHku2j .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uxGYQHku2j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxGYQHku2j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uxGYQHku2j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxGYQHku2j .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uxGYQHku2j .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uxGYQHku2j .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uxGYQHku2j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uxGYQHku2j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxGYQHku2j .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uxGYQHku2j .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxGYQHku2j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxGYQHku2j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxGYQHku2j .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;
}
@media (min-width: 1440px) {
  .cid-uxGYQHku2j .navbar-brand {
    margin-right: 25px;
  }
}
.cid-uxGYQHku2j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uxGYQHku2j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxGYQHku2j .dropdown-item.active,
.cid-uxGYQHku2j .dropdown-item:active {
  background-color: transparent;
}
.cid-uxGYQHku2j .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uxGYQHku2j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxGYQHku2j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxGYQHku2j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxGYQHku2j ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uxGYQHku2j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxGYQHku2j button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c7fcb5;
}
.cid-uxGYQHku2j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #144031;
}
.cid-uxGYQHku2j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxGYQHku2j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxGYQHku2j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxGYQHku2j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxGYQHku2j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxGYQHku2j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxGYQHku2j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxGYQHku2j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxGYQHku2j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uxGYQHku2j .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-uxGYQHku2j .navbar {
    height: 70px;
  }
  .cid-uxGYQHku2j .navbar.opened {
    height: auto;
  }
  .cid-uxGYQHku2j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxGYQHku2j .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uxGYQHku2j .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uxGYQHku2j .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uxGYQHku2j .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uxGYQHku2j .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
  padding: 14px 25px;
}
.cid-uxGYQHku2j .navbar-caption:hover {
  color: #6bffc7;
}
@media (min-width: 992px) {
  .cid-uxGYQHku2j .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uxGYQHku2j .text_widget {
  margin-bottom: 32px;
}
.cid-uxGYQHku2j .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uxGYQHku2j .text_widget a:hover,
.cid-uxGYQHku2j .text_widget a:focus {
  opacity: .8;
}
.cid-uxGYQHku2j .contacts-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uxGYQHku2j .contacts-wrapper {
    display: none;
  }
}
.cid-uxGYQHku2j .contacts-wrapper a .mbr-contact {
  margin: 8px 50px;
  position: relative;
}
@media (max-width: 1440px) {
  .cid-uxGYQHku2j .contacts-wrapper a .mbr-contact {
    margin: 8px 20px;
  }
}
.cid-uxGYQHku2j .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGYQHku2j .contacts-wrapper a .mbr-contact:hover:before,
.cid-uxGYQHku2j .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uxGYQHku2j .mbr-section-subtitle {
  color: #144031;
  text-align: center;
}
.cid-uxGYQHku2j .navbar-caption {
  color: #c7fcb5;
}
.cid-uxGYQHku2j .mbr-contact {
  color: #ffffff;
}
.cid-uxGYQHku2j .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-uxGYQHku2j .mbr-section-subtitle,
.cid-uxGYQHku2j .text_widget,
.cid-uxGYQHku2j .mbr-section-btn {
  text-align: center;
}
.cid-uxGYQHku2j a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uxGYQISgr9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQISgr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQISgr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQISgr9 .items-wrap {
  justify-content: space-between;
}
.cid-uxGYQISgr9 .items-wrap .card {
  justify-content: center;
}
.cid-uxGYQISgr9 .title-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uxGYQISgr9 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uxGYQISgr9 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQISgr9 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxGYQISgr9 .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uxGYQISgr9 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQISgr9 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uxGYQISgr9 .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxGYQISgr9 .image-wrapper img {
    height: 350px;
  }
}
.cid-uxGYQISgr9 .mbr-desc {
  color: #000000;
}
.cid-uxGYQISgr9 .mbr-section-title {
  color: #000000;
}
.cid-uxGYQISgr9 .mbr-text {
  color: #000000;
}
.cid-uxGYQJZP0l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQJZP0l .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uxGYQJZP0l .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uxGYQJZP0l .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb18a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uxGYQJZP0l .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uxGYQJZP0l .mbr-text {
  color: #000000;
}
.cid-uxGYQKPv5f {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxGYQKPv5f .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uxGYQKPv5f .mbr-text {
  line-height: 1.5;
  color: #000000;
}
.cid-uxGYQKPv5f .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-uxGYQKPv5f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQKPv5f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQLL9xz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQLL9xz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQLL9xz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQLL9xz .row {
  justify-content: flex-start;
}
.cid-uxGYQLL9xz .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uxGYQLL9xz .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxGYQLL9xz .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uxGYQLL9xz .image-wrapper {
  width: 100%;
}
.cid-uxGYQLL9xz .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uxGYQLL9xz .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uxGYQLL9xz .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uxGYQLL9xz .mbr-text {
    margin-top: 45px;
  }
}
.cid-uxGYQLL9xz .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uxGYQLL9xz .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uxGYQLL9xz .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uxGYQLL9xz .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uxGYQLL9xz .mbr-text,
.cid-uxGYQLL9xz .mbr-section-btn {
  color: #000000;
}
.cid-uxGYQMMSd2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxGYQMMSd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQMMSd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQMMSd2 .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #f50d0d;
  margin-bottom: 3rem;
}
.cid-uxGYQMMSd2 b,
.cid-uxGYQMMSd2 strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-uxGYQMMSd2 .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-uxGYQMMSd2 .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-uxGYQMMSd2 .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-uxGYQMMSd2 .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-uxGYQMMSd2 .card {
  padding: 0;
}
.cid-uxGYQMMSd2 .container-fluid {
  padding: 0;
}
.cid-uxGYQMMSd2 .container-fluid .row {
  margin: 0;
}
.cid-uxGYQMMSd2 .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-uxGYQMMSd2 .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxGYQMMSd2 .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-uxGYQMMSd2 .card1 {
  background: #ffb18a;
}
.cid-uxGYQMMSd2 .card2 {
  background: #ffb18a;
}
.cid-uxGYQMMSd2 .card3 {
  background: #ffb18a;
}
.cid-uxGYQMMSd2 .card-text,
.cid-uxGYQMMSd2 .mbr-section-btn,
.cid-uxGYQMMSd2 .social-row {
  color: #17003b;
  text-align: center;
}
.cid-uxGYQMMSd2 .card-title,
.cid-uxGYQMMSd2 .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uxGYQMMSd2 .mbr-link,
.cid-uxGYQMMSd2 .content-wrap,
.cid-uxGYQMMSd2 path {
  color: #17003b;
  text-align: center;
}
.cid-uxGYQOooAe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQOooAe .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGYQOooAe .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxGYQOooAe .col-title,
.cid-uxGYQOooAe .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxGYQOooAe .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxGYQOooAe .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGYQOooAe .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxGYQOooAe .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxGYQOooAe .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxGYQOooAe .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGYQPnclQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxGYQPnclQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQPnclQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQPnclQ .container {
  max-width: 1600px;
}
.cid-uxGYQPnclQ .row {
  justify-content: left;
}
.cid-uxGYQPnclQ .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-uxGYQPnclQ .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-uxGYQPnclQ .title-container {
    margin-bottom: 50px;
  }
}
.cid-uxGYQPnclQ .mbr-section-title {
  color: #ffffff;
}
.cid-uxGYQPnclQ .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uxGYQPnclQ .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-uxGYQPnclQ .img-container {
    height: 350px;
  }
}
.cid-uxGYQPnclQ .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uxGYQPnclQ .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uxGYQPnclQ .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-uxGYQPnclQ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uxGYQQuo1W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQQuo1W .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uxGYQQuo1W .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uxGYQQuo1W .col-title,
.cid-uxGYQQuo1W .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uxGYQQuo1W .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uxGYQQuo1W .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGYQQuo1W .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxGYQQuo1W .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uxGYQQuo1W .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uxGYQQuo1W .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGYQRyVeQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffb18a;
}
.cid-uxGYQRyVeQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uxGYQRyVeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQRyVeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQRyVeQ .content-wrap {
  margin: 0;
}
.cid-uxGYQRyVeQ .content-wrap .card {
  padding: 0;
}
.cid-uxGYQRyVeQ .content-wrapper {
  padding: 40px 72px;
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uxGYQRyVeQ .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQRyVeQ .content-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQRyVeQ .content-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uxGYQRyVeQ .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper {
  border-bottom: none;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
  flex-wrap: wrap;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 16px;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #000000;
  padding: 16px 25px;
  border: 2px solid #000000;
  box-shadow: 4px 3px 0 0 #000000;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxGYQRyVeQ .content-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffb18a;
}
.cid-uxGYQRyVeQ .tab-content {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uxGYQRyVeQ .tab-content {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQRyVeQ .tab-content {
    padding: 40px 0;
  }
}
.cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .image-wrap img {
    height: 350px;
  }
}
.cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uxGYQRyVeQ .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uxGYQRyVeQ .mbr-section-title {
  color: #150764;
}
.cid-uxGYQRyVeQ .item-title {
  color: #ffffff;
}
.cid-uxGYQRyVeQ .item-text {
  color: #150764;
}
.cid-uxGYQRyVeQ .mbr-section-title,
.cid-uxGYQRyVeQ .tabs-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uxGYQTtUBp {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-uxGYQTtUBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQTtUBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQTtUBp .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uxGYQTtUBp .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uxGYQTtUBp .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxGYQTtUBp .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-uxGYQTtUBp .content-container {
    padding: 0 20px;
  }
}
.cid-uxGYQTtUBp .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-uxGYQTtUBp .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uxGYQTtUBp .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .image-wrapper img {
    max-width: 100%;
  }
}
.cid-uxGYQTtUBp .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-uxGYQTtUBp .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uxGYQTtUBp .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .mbr-text {
    text-align: center !important;
  }
}
.cid-uxGYQTtUBp .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uxGYQTtUBp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uxGYQTtUBp .mbr-text,
.cid-uxGYQTtUBp .mbr-section-btn {
  color: #000000;
}
.cid-uxGYQUynRr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uxGYQUynRr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQUynRr .col-12 {
  padding: 0;
}
.cid-uxGYQUynRr .row {
  margin: 0;
}
.cid-uxGYQUynRr .card-wrapper {
  border: 1px solid #f50d0d;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uxGYQUynRr .card-wrapper {
    padding: 1rem;
  }
}
.cid-uxGYQUynRr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQUynRr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxGYQUynRr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxGYQUynRr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxGYQUynRr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxGYQUynRr .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uxGYQUynRr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxGYQUynRr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxGYQUynRr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxGYQUynRr .mbr-text,
.cid-uxGYQUynRr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uxGYQVUYJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQVUYJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQVUYJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQVUYJv .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uxGYQVUYJv .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQVUYJv .container {
    padding: 0 26px;
  }
}
.cid-uxGYQVUYJv .row {
  justify-content: center;
}
.cid-uxGYQVUYJv .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffb18a;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uxGYQVUYJv .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQVUYJv .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uxGYQVUYJv .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uxGYQVUYJv .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uxGYQVUYJv .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uxGYQVUYJv .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uxGYQVUYJv .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uxGYQVUYJv .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uxGYQVUYJv .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uxGYQVUYJv .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uxGYQVUYJv .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uxGYQVUYJv .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uxGYQVUYJv .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uxGYQVUYJv .mbr-section-title {
  color: #ffffff;
}
.cid-uxGYQVUYJv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxGYQVUYJv .mbr-desc {
  color: #ffffff;
}
.cid-uxGYQVUYJv .mbr-text {
  color: #ffffff;
}
.cid-uxGYQVUYJv .mbr-link {
  color: #ffffff;
}
.cid-uxGYQXcK1j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYQXcK1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQXcK1j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYQXcK1j .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uxGYQXcK1j .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxGYQXcK1j .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uxGYQXcK1j .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uxGYQXcK1j .container {
    padding: 0 16px;
  }
}
.cid-uxGYQXcK1j .row {
  justify-content: center;
}
.cid-uxGYQXcK1j .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGYQXcK1j .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGYQXcK1j .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uxGYQXcK1j .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uxGYQXcK1j .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uxGYQXcK1j .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uxGYQXcK1j .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uxGYQXcK1j .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxGYQXcK1j .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uxGYQXcK1j .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxGYQXcK1j .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uxGYQXcK1j .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uxGYQXcK1j .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uxGYQXcK1j .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uxGYQXcK1j .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uxGYQXcK1j .panel-title {
  color: #000000;
}
.cid-uxGYQXcK1j .panel-text {
  color: #000000;
}
.cid-uxGYQYJdjP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb18a;
}
.cid-uxGYQYJdjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYQYJdjP .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-uxGYQYJdjP .container {
    padding: 0 20px;
  }
}
.cid-uxGYQYJdjP .row {
  margin: 0;
}
.cid-uxGYQYJdjP .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGYQYJdjP .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGYQYJdjP .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uxGYQYJdjP .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uxGYQYJdjP .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uxGYQYJdjP .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uxGYQYJdjP .mbr-section-title {
  color: #ffffff;
}
.cid-uxGYR0yZwE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxGYR0yZwE .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uxGYR0yZwE .content_wrapper:hover .mbr-section-title a {
  color: #ff57be !important;
}
.cid-uxGYR0yZwE .mbr-section-title {
  margin-bottom: 12px;
  color: #000000;
  text-align: center;
}
.cid-uxGYR0yZwE .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uxGYR0yZwE .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uxGYR0yZwE .mbr-section-btn .btn-secondary-outline:hover,
.cid-uxGYR0yZwE .mbr-section-btn .btn-secondary-outline .active,
.cid-uxGYR0yZwE .mbr-section-btn .btn-secondary-outline:focus {
  color: #f50d0d !important;
}
.cid-uxGYR0yZwE .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uxGYR0yZwE .image_post {
  display: inline-block;
}
.cid-uxGYR0yZwE .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uxGYR0yZwE .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uxGYR0yZwE .mbr-text,
.cid-uxGYR0yZwE .mbr-section-btn {
  color: #000000;
}
.cid-uxGYR2OM66 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb18a;
}
.cid-uxGYR2OM66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYR2OM66 .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-uxGYR2OM66 .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uxGYR2OM66 .container {
    padding: 0 4px;
  }
}
.cid-uxGYR2OM66 .row {
  margin: 0;
}
.cid-uxGYR2OM66 .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGYR2OM66 .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uxGYR2OM66 .row .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0 !important;
}
.cid-uxGYR2OM66 .row .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-uxGYR2OM66 .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uxGYR2OM66 .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uxGYR2OM66 .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uxGYR2OM66 .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uxGYR2OM66 .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uxGYR2OM66 .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGYR2OM66 .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uxGYR2OM66 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uxGYR2OM66 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uxGYR2OM66 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uxGYR2OM66 .panel-title-edit,
.cid-uxGYR2OM66 .mbr-iconfont {
  color: #ffffff;
}
.cid-uxGYR2OM66 .mbr-text {
  color: #ffffff;
}
.cid-uxGYR5Pwti {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uxGYR5Pwti .google-map {
  height: 35rem;
  position: relative;
}
.cid-uxGYR5Pwti .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxGYR5Pwti .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-uxGYR5Pwti .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxGYR5Pwti .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxGYR5Pwti .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxGYR5Pwti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxGYR9n6pQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-uxGYR9n6pQ .content {
    text-align: center;
  }
  .cid-uxGYR9n6pQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uxGYR9n6pQ .logo-subtitle {
  color: #8d97ad;
}
.cid-uxGYR9n6pQ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxGYR9n6pQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uxGYR9n6pQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uxGYR9n6pQ .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uxGYR9n6pQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uxGYR9n6pQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uxGYR9n6pQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uxGYR9n6pQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uxGYR9n6pQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxGYR9n6pQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uxGYR9n6pQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxGYR9n6pQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxGYR9n6pQ .list-item {
  display: flex;
}
.cid-uxGYR9n6pQ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uxGYR9n6pQ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uxGYR9n6pQ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uxGYR9n6pQ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uxGYR9n6pQ .column-title {
  color: #ffffff;
}
.cid-uxGYR9n6pQ .mbr-text {
  color: #ffffff;
}
.cid-uxGYR9n6pQ P {
  color: #ffffff;
}
