body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- 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.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e5524e !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #e5524e !important;
  border-color: #e5524e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-primary:before {
  background-color: #c9221e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c9221e !important;
  border-color: #c9221e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #b31e1a;
  color: #b31e1a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #e5524e;
}
.btn-primary-outline:before {
  background-color: #e5524e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e5524e;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #e5524e !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b31e1a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e5524e;
  border-color: #e5524e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e5524e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.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;
}
blockquote {
  border-color: #e5524e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #e5524e;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #e5524e;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e5524e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e5524e;
  border-bottom-color: #e5524e;
}
.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: #e5524e !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: #f27d7a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e5524e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uhfzw0KbX2 {
  background-color: transparent;
}
.cid-uhfzw0KbX2 .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhfzw0KbX2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhfzw0KbX2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhfzw0KbX2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhfzw0KbX2 .menu_box .navbar.opened,
  .cid-uhfzw0KbX2 .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhfzw0KbX2 .navbar-dropdown {
  position: relative !important;
}
.cid-uhfzw0KbX2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhfzw0KbX2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhfzw0KbX2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhfzw0KbX2 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhfzw0KbX2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhfzw0KbX2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhfzw0KbX2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhfzw0KbX2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhfzw0KbX2 .offcanvas-body .mbr-text,
  .cid-uhfzw0KbX2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhfzw0KbX2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhfzw0KbX2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhfzw0KbX2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhfzw0KbX2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhfzw0KbX2 .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-uhfzw0KbX2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhfzw0KbX2 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-uhfzw0KbX2 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhfzw0KbX2 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhfzw0KbX2 .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhfzw0KbX2 .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .nav-item {
    margin: 0 !important;
  }
}
.cid-uhfzw0KbX2 .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhfzw0KbX2 .nav-item .nav-link:hover,
.cid-uhfzw0KbX2 .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhfzw0KbX2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhfzw0KbX2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhfzw0KbX2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhfzw0KbX2 .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-uhfzw0KbX2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhfzw0KbX2 .offcanvas_box {
    display: none;
  }
}
.cid-uhfzw0KbX2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhfzw0KbX2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhfzw0KbX2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhfzw0KbX2 .container {
  display: flex;
  margin: auto;
}
.cid-uhfzw0KbX2 .iconfont-wrapper {
  color: #0f1d07;
  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-uhfzw0KbX2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhfzw0KbX2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhfzw0KbX2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhfzw0KbX2 .navbar-nav {
    margin: 0;
  }
}
.cid-uhfzw0KbX2 .dropdown-menu,
.cid-uhfzw0KbX2 .navbar.opened {
  background-color: false !important;
}
.cid-uhfzw0KbX2 .nav-item:focus,
.cid-uhfzw0KbX2 .nav-link:focus {
  outline: none;
}
.cid-uhfzw0KbX2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhfzw0KbX2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhfzw0KbX2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhfzw0KbX2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhfzw0KbX2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhfzw0KbX2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhfzw0KbX2 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhfzw0KbX2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhfzw0KbX2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uhfzw0KbX2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhfzw0KbX2 .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhfzw0KbX2 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhfzw0KbX2 .navbar.collapsed {
  justify-content: center;
}
.cid-uhfzw0KbX2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhfzw0KbX2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhfzw0KbX2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhfzw0KbX2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhfzw0KbX2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhfzw0KbX2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhfzw0KbX2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhfzw0KbX2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhfzw0KbX2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhfzw0KbX2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhfzw0KbX2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhfzw0KbX2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhfzw0KbX2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhfzw0KbX2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhfzw0KbX2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhfzw0KbX2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhfzw0KbX2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhfzw0KbX2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhfzw0KbX2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhfzw0KbX2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhfzw0KbX2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhfzw0KbX2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhfzw0KbX2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhfzw0KbX2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhfzw0KbX2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhfzw0KbX2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhfzw0KbX2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhfzw0KbX2 .dropdown-item.active,
.cid-uhfzw0KbX2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uhfzw0KbX2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhfzw0KbX2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhfzw0KbX2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhfzw0KbX2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhfzw0KbX2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhfzw0KbX2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhfzw0KbX2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhfzw0KbX2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhfzw0KbX2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhfzw0KbX2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhfzw0KbX2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhfzw0KbX2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhfzw0KbX2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhfzw0KbX2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhfzw0KbX2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhfzw0KbX2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhfzw0KbX2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhfzw0KbX2 .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-uhfzw0KbX2 .navbar {
    height: 70px;
  }
  .cid-uhfzw0KbX2 .navbar.opened {
    height: auto;
  }
  .cid-uhfzw0KbX2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhfzw0KbX2 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhfzw0KbX2 .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhfzw0KbX2 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhfzw0KbX2 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhfzw0KbX2 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhfzw0KbX2 .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhfzw0KbX2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhfzw0KbX2 .text_widget {
  margin-bottom: 32px;
}
.cid-uhfzw0KbX2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhfzw0KbX2 .text_widget a:hover,
.cid-uhfzw0KbX2 .text_widget a:focus {
  opacity: .8;
}
.cid-uhfzw0KbX2 .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhfzw0KbX2 .navbar-caption {
  color: #0f1d07;
}
.cid-uhfzw0KbX2 .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhfzw0KbX2 .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhfzw0KbX2 .navigation-wrapper {
    display: block;
  }
}
.cid-uhfzw0KbX2 .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhfzw0KbX2 .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhfzw0KbX2 .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhfzw0KbX2 .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhfzw0KbX2 .mbr-section-subtitle,
.cid-uhfzw0KbX2 .text_widget,
.cid-uhfzw0KbX2 .mbr-section-btn {
  text-align: center;
}
.cid-uhfzw0KbX2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhfIacqwFC {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhfIacqwFC .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhfIacqwFC .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhfIacqwFC .mbr-section-title {
  margin: 0;
}
.cid-uhfIacqwFC .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhfIacqwFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfIacqwFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlkvRlP2g {
  background: #ffffff;
}
.cid-uhlkvRlP2g .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlkvRlP2g figcaption {
  position: relative;
}
.cid-uhlkvRlP2g figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlkvRlP2g .image-block {
    width: 100% !important;
  }
}
.cid-uhfIh1UXFe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhfIh1UXFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfIh1UXFe .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-uhfIh1UXFe .container {
    padding: 0 30px;
  }
}
.cid-uhfIh1UXFe .row {
  justify-content: center;
}
.cid-uhfIh1UXFe .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhfIh1UXFe .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhfIh1UXFe .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhfIh1UXFe .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhfIh1UXFe .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhfIh1UXFe .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhfIh1UXFe .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhfIh1UXFe .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhfIh1UXFe .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhfIh1UXFe .mbr-text {
  color: #144031;
}
.cid-uhfIs8o0Zf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2a0845;
  background: linear-gradient(90deg, #2a0845, #0c57bf);
}
.cid-uhfIs8o0Zf .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhfIs8o0Zf h4,
.cid-uhfIs8o0Zf h5 {
  text-align: center;
}
.cid-uhfIs8o0Zf p {
  text-align: center;
}
.cid-uhfIs8o0Zf .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhfIs8o0Zf .card-img {
  font-size: 3rem;
}
.cid-uhfIs8o0Zf .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhfIs8o0Zf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfIs8o0Zf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfIv5EOHo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uhfIwRnOBM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhfIwRnOBM h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhfIwRnOBM .mbr-section-subtitle {
  color: #767676;
}
.cid-uhfIwRnOBM .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhfIwRnOBM .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhfIwRnOBM H2 {
  color: #ffffff;
}
.cid-uhfIwRnOBM .mbr-text-left {
  color: #ffffff;
}
.cid-uhfIwRnOBM .mbr-text-right {
  color: #ffffff;
}
.cid-uhfKkdXY8U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhfKkdXY8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfKkdXY8U .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-uhfKkdXY8U .container {
    padding: 0 16px;
  }
}
.cid-uhfKkdXY8U .row {
  position: relative;
  z-index: 1;
}
.cid-uhfKkdXY8U .card {
  justify-content: flex-end;
}
.cid-uhfKkdXY8U .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uhfKkdXY8U .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhfKkdXY8U .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhfKkdXY8U .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uhfKkdXY8U .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uhfKkdXY8U .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uhfKkdXY8U .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uhfKkdXY8U .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhfKkdXY8U .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uhfKkdXY8U .card-wrapper .card-wrap {
  background-color: #6a2be9;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhfKkdXY8U .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uhfKkdXY8U .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uhfKkdXY8U .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uhfKkdXY8U .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uhfKkdXY8U .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uhfKkdXY8U .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhfKkdXY8U .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uhfKkdXY8U .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhfKkdXY8U .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uhfKkdXY8U .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uhfKkdXY8U .text-wrapper {
    margin-left: 0;
  }
}
.cid-uhfKkdXY8U .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uhfKkdXY8U .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-uhfKkdXY8U .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uhfKkdXY8U .mbr-text {
  color: #000000;
}
.cid-uhfKkdXY8U .card-desc {
  color: #000000;
}
.cid-uhfKkdXY8U .card-text {
  color: #ffffff;
}
.cid-uhfKkdXY8U .card-name {
  color: #ffffff;
}
.cid-uhfKkdXY8U .card-role {
  color: #ffffff;
}
.cid-uhfKDPqtco {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
}
.cid-uhfKDPqtco .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhfKDPqtco .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhfKDPqtco h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhfKDPqtco p {
  color: #464646;
}
.cid-uhfKDPqtco h2 {
  color: #000000;
}
.cid-uhfKDPqtco .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhfKDPqtco .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhfKDPqtco .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhfKDPqtco .mbr-text {
    text-align: center;
  }
}
.cid-uhfKDPqtco .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfKDPqtco .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfKDPqtco .mbr-section-title,
.cid-uhfKDPqtco .mbr-section-btn {
  color: #ffffff;
}
.cid-uhfKDPqtco .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhfL1mDx8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhfL1mDx8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfL1mDx8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfL1mDx8m .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhfL1mDx8m .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhfL1mDx8m .container {
    padding: 0 16px;
  }
}
.cid-uhfL1mDx8m .card {
  justify-content: center;
}
.cid-uhfL1mDx8m .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhfL1mDx8m .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhfL1mDx8m .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhfL1mDx8m .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhfL1mDx8m .mbr-section-title {
  color: #000000;
}
.cid-uhfL1mDx8m .mbr-text {
  color: #000000;
}
.cid-uhfL1mDx8m .mbr-desc {
  color: #000000;
}
.cid-uhfL1mDx8m .mbr-section-title,
.cid-uhfL1mDx8m .title-wrapper {
  color: #ffffff;
}
.cid-uhfKLbxquT {
  background-image: url("../../../assets/images/bounce-house-rentals1-1388x640.jpeg");
}
.cid-uhfKLbxquT .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
  width: 100%;
  float: right;
  position: relative;
}
.cid-uhfKLbxquT .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhfKLbxquT .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhfKLbxquT .container-full-width {
  position: relative;
}
.cid-uhfKLbxquT .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-uhfKLbxquT .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-uhfKLbxquT .layer path {
  fill: #6441a5;
}
@media (min-width: 576px) {
  .cid-uhfKLbxquT .text-content {
    width: 540px;
  }
  .cid-uhfKLbxquT .column-content {
    width: 100%;
  }
  .cid-uhfKLbxquT .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-uhfKLbxquT .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-uhfKLbxquT .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-uhfKLbxquT .column-content {
    width: 50%;
  }
  .cid-uhfKLbxquT .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-uhfKLbxquT .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhfKLbxquT .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-uhfKLbxquT .column-content {
    height: 33rem;
  }
}
.cid-uhfKLbxquT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfKLbxquT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfKLbxquT H1 {
  text-align: center;
  color: #ffffff;
}
.cid-uhfMhu2eXd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhfMhu2eXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfMhu2eXd .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-uhfMhu2eXd .container {
    padding: 0 15px;
  }
}
.cid-uhfMhu2eXd .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uhfMhu2eXd .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uhfMhu2eXd .content-wrapper {
    padding-right: 0;
  }
}
.cid-uhfMhu2eXd .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhfMhu2eXd .content-wrap {
    display: block;
  }
}
.cid-uhfMhu2eXd .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhfMhu2eXd .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhfMhu2eXd .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhfMhu2eXd .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhfMhu2eXd .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uhfMhu2eXd .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uhfMhu2eXd .mbr-section-title {
  color: #3f1819;
}
.cid-uhfMhu2eXd .mbr-desc,
.cid-uhfMhu2eXd .desc-wrapper {
  color: #3f1819;
}
.cid-uhlphkPAFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6441a5;
}
.cid-uhlphkPAFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlphkPAFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlphkPAFX .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .container {
    padding: 0 22px;
  }
}
.cid-uhlphkPAFX .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlphkPAFX .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .image-wrapper img {
    height: 350px;
  }
}
.cid-uhlphkPAFX .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-uhlphkPAFX .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhlphkPAFX .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhlphkPAFX .panel-group .card:hover,
.cid-uhlphkPAFX .panel-group .card:focus {
  border-top: 1px solid #e9ea88;
}
.cid-uhlphkPAFX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #e9ea88;
  margin-left: 16px;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlphkPAFX .panel-title-edit {
  color: #ffffff;
}
.cid-uhlphkPAFX .panel-text {
  color: #8a8588;
}
.cid-uhfMr9ggh4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhfMr9ggh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfMr9ggh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfMr9ggh4 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhfMr9ggh4 .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhfMr9ggh4 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhfMr9ggh4 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhfMr9ggh4 .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .image-wrapper {
    padding-left: 0;
  }
}
.cid-uhfMr9ggh4 .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhfMr9ggh4 .mbr-section-title {
  color: #000000;
}
.cid-uhfMr9ggh4 .mbr-desc {
  color: #000000;
}
.cid-uhfMr9ggh4 .mbr-text {
  color: #000000;
}
.cid-uhfMxuL9LG {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #6441a5;
}
.cid-uhfMxuL9LG .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhfMxuL9LG .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhfMxuL9LG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfMxuL9LG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfMxuL9LG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhfMxuL9LG .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhfMxuL9LG .container {
    padding: 0 30px;
  }
}
.cid-uhfMxuL9LG .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uhfMxuL9LG .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhfMxuL9LG .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhfMxuL9LG .text-wrapper {
  border-left: 1px solid #c7fcb5;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uhfMxuL9LG .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uhfMxuL9LG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhfMxuL9LG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhfMxuL9LG .mbr-text {
  color: #ffffff;
}
.cid-uhli6AZycC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uhli6AZycC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhli6AZycC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhli6AZycC .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhli6AZycC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhli6AZycC .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-uhli6AZycC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhli6AZycC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhli6AZycC .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhli6AZycC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhfNGGVDxo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhfNGGVDxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfNGGVDxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfNGGVDxo img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhfNGGVDxo .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhfNGGVDxo .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo .icon-wrap {
    justify-content: center;
  }
}
.cid-uhfNGGVDxo .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhfNGGVDxo a {
  font-weight: bold;
}
.cid-uhfNGGVDxo .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo .card {
    padding: 2rem 1rem;
  }
}
.cid-uhfNGGVDxo .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhfNGGVDxo .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhfNGGVDxo .container-fluid,
.cid-uhfNGGVDxo .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhfNGGVDxo .container-fluid,
  .cid-uhfNGGVDxo .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhfNGGVDxo .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhfNGGVDxo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhfNGGVDxo .mbr-section-title {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-text,
.cid-uhfNGGVDxo .mbr-section-btn {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-cardtext {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhfNGGVDxo .mbr-link {
  color: #ff9945;
}
.cid-uhlBAgLK4X {
  background-color: transparent;
}
.cid-uhlBAgLK4X .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhlBAgLK4X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhlBAgLK4X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhlBAgLK4X .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhlBAgLK4X .menu_box .navbar.opened,
  .cid-uhlBAgLK4X .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhlBAgLK4X .navbar-dropdown {
  position: relative !important;
}
.cid-uhlBAgLK4X .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhlBAgLK4X .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhlBAgLK4X .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhlBAgLK4X .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhlBAgLK4X .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhlBAgLK4X .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhlBAgLK4X .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhlBAgLK4X .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhlBAgLK4X .offcanvas-body .mbr-text,
  .cid-uhlBAgLK4X .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhlBAgLK4X .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhlBAgLK4X .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhlBAgLK4X ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhlBAgLK4X .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlBAgLK4X .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-uhlBAgLK4X .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhlBAgLK4X 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-uhlBAgLK4X .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhlBAgLK4X .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhlBAgLK4X .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhlBAgLK4X .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .nav-item {
    margin: 0 !important;
  }
}
.cid-uhlBAgLK4X .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhlBAgLK4X .nav-item .nav-link:hover,
.cid-uhlBAgLK4X .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhlBAgLK4X .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhlBAgLK4X .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhlBAgLK4X .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlBAgLK4X .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-uhlBAgLK4X .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhlBAgLK4X .offcanvas_box {
    display: none;
  }
}
.cid-uhlBAgLK4X .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhlBAgLK4X .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhlBAgLK4X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhlBAgLK4X .container {
  display: flex;
  margin: auto;
}
.cid-uhlBAgLK4X .iconfont-wrapper {
  color: #0f1d07;
  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-uhlBAgLK4X .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhlBAgLK4X .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhlBAgLK4X .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhlBAgLK4X .navbar-nav {
    margin: 0;
  }
}
.cid-uhlBAgLK4X .dropdown-menu,
.cid-uhlBAgLK4X .navbar.opened {
  background-color: false !important;
}
.cid-uhlBAgLK4X .nav-item:focus,
.cid-uhlBAgLK4X .nav-link:focus {
  outline: none;
}
.cid-uhlBAgLK4X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhlBAgLK4X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhlBAgLK4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhlBAgLK4X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhlBAgLK4X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhlBAgLK4X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhlBAgLK4X .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhlBAgLK4X .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhlBAgLK4X .navbar.opened {
  transition: all 0.3s;
}
.cid-uhlBAgLK4X .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhlBAgLK4X .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhlBAgLK4X .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhlBAgLK4X .navbar.collapsed {
  justify-content: center;
}
.cid-uhlBAgLK4X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhlBAgLK4X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhlBAgLK4X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhlBAgLK4X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhlBAgLK4X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhlBAgLK4X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhlBAgLK4X .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhlBAgLK4X .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhlBAgLK4X .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhlBAgLK4X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhlBAgLK4X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhlBAgLK4X .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhlBAgLK4X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhlBAgLK4X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhlBAgLK4X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhlBAgLK4X .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhlBAgLK4X .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhlBAgLK4X .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhlBAgLK4X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhlBAgLK4X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhlBAgLK4X .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhlBAgLK4X .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhlBAgLK4X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhlBAgLK4X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhlBAgLK4X .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhlBAgLK4X .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhlBAgLK4X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhlBAgLK4X .dropdown-item.active,
.cid-uhlBAgLK4X .dropdown-item:active {
  background-color: transparent;
}
.cid-uhlBAgLK4X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhlBAgLK4X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhlBAgLK4X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhlBAgLK4X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhlBAgLK4X ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhlBAgLK4X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhlBAgLK4X button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhlBAgLK4X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhlBAgLK4X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhlBAgLK4X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlBAgLK4X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlBAgLK4X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhlBAgLK4X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlBAgLK4X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhlBAgLK4X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhlBAgLK4X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlBAgLK4X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhlBAgLK4X .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-uhlBAgLK4X .navbar {
    height: 70px;
  }
  .cid-uhlBAgLK4X .navbar.opened {
    height: auto;
  }
  .cid-uhlBAgLK4X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhlBAgLK4X .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhlBAgLK4X .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhlBAgLK4X .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhlBAgLK4X .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhlBAgLK4X .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhlBAgLK4X .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhlBAgLK4X .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhlBAgLK4X .text_widget {
  margin-bottom: 32px;
}
.cid-uhlBAgLK4X .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhlBAgLK4X .text_widget a:hover,
.cid-uhlBAgLK4X .text_widget a:focus {
  opacity: .8;
}
.cid-uhlBAgLK4X .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlBAgLK4X .navbar-caption {
  color: #0f1d07;
}
.cid-uhlBAgLK4X .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlBAgLK4X .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhlBAgLK4X .navigation-wrapper {
    display: block;
  }
}
.cid-uhlBAgLK4X .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlBAgLK4X .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhlBAgLK4X .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlBAgLK4X .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhlBAgLK4X .mbr-section-subtitle,
.cid-uhlBAgLK4X .text_widget,
.cid-uhlBAgLK4X .mbr-section-btn {
  text-align: center;
}
.cid-uhlBAgLK4X a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhlBAimyqj {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhlBAimyqj .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhlBAimyqj .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhlBAimyqj .mbr-section-title {
  margin: 0;
}
.cid-uhlBAimyqj .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhlBAimyqj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlBAimyqj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAjDgTp {
  background: #ffffff;
}
.cid-uhlBAjDgTp .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlBAjDgTp figcaption {
  position: relative;
}
.cid-uhlBAjDgTp figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlBAjDgTp .image-block {
    width: 100% !important;
  }
}
.cid-uhlBAnlHll {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhlBAnlHll .block-text {
  color: #ffffff;
}
.cid-uhlBAyAJxU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uhlBAyAJxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlBAyAJxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAyAJxU .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlBAyAJxU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlBAyAJxU .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-uhlBAyAJxU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlBAyAJxU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlBAyAJxU .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhlBAyAJxU .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhlBAzN9Du {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhlBAzN9Du .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlBAzN9Du .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAzN9Du img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhlBAzN9Du .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhlBAzN9Du .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du .icon-wrap {
    justify-content: center;
  }
}
.cid-uhlBAzN9Du .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhlBAzN9Du a {
  font-weight: bold;
}
.cid-uhlBAzN9Du .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du .card {
    padding: 2rem 1rem;
  }
}
.cid-uhlBAzN9Du .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhlBAzN9Du .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhlBAzN9Du .container-fluid,
.cid-uhlBAzN9Du .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhlBAzN9Du .container-fluid,
  .cid-uhlBAzN9Du .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhlBAzN9Du .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhlBAzN9Du .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhlBAzN9Du .mbr-section-title {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-text,
.cid-uhlBAzN9Du .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-cardtext {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhlBAzN9Du .mbr-link {
  color: #ff9945;
}
.cid-uhlCk2z2Ui {
  background-color: transparent;
}
.cid-uhlCk2z2Ui .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhlCk2z2Ui .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhlCk2z2Ui .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhlCk2z2Ui .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhlCk2z2Ui .menu_box .navbar.opened,
  .cid-uhlCk2z2Ui .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhlCk2z2Ui .navbar-dropdown {
  position: relative !important;
}
.cid-uhlCk2z2Ui .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhlCk2z2Ui .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhlCk2z2Ui .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhlCk2z2Ui .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhlCk2z2Ui .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhlCk2z2Ui .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhlCk2z2Ui .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhlCk2z2Ui .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhlCk2z2Ui .offcanvas-body .mbr-text,
  .cid-uhlCk2z2Ui .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhlCk2z2Ui .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhlCk2z2Ui .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhlCk2z2Ui ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhlCk2z2Ui .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlCk2z2Ui .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-uhlCk2z2Ui .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhlCk2z2Ui 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-uhlCk2z2Ui .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhlCk2z2Ui .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhlCk2z2Ui .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhlCk2z2Ui .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .nav-item {
    margin: 0 !important;
  }
}
.cid-uhlCk2z2Ui .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhlCk2z2Ui .nav-item .nav-link:hover,
.cid-uhlCk2z2Ui .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhlCk2z2Ui .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhlCk2z2Ui .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhlCk2z2Ui .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlCk2z2Ui .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-uhlCk2z2Ui .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhlCk2z2Ui .offcanvas_box {
    display: none;
  }
}
.cid-uhlCk2z2Ui .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhlCk2z2Ui .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhlCk2z2Ui .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhlCk2z2Ui .container {
  display: flex;
  margin: auto;
}
.cid-uhlCk2z2Ui .iconfont-wrapper {
  color: #0f1d07;
  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-uhlCk2z2Ui .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhlCk2z2Ui .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhlCk2z2Ui .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhlCk2z2Ui .navbar-nav {
    margin: 0;
  }
}
.cid-uhlCk2z2Ui .dropdown-menu,
.cid-uhlCk2z2Ui .navbar.opened {
  background-color: false !important;
}
.cid-uhlCk2z2Ui .nav-item:focus,
.cid-uhlCk2z2Ui .nav-link:focus {
  outline: none;
}
.cid-uhlCk2z2Ui .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhlCk2z2Ui .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhlCk2z2Ui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhlCk2z2Ui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhlCk2z2Ui .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhlCk2z2Ui .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhlCk2z2Ui .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhlCk2z2Ui .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhlCk2z2Ui .navbar.opened {
  transition: all 0.3s;
}
.cid-uhlCk2z2Ui .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhlCk2z2Ui .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhlCk2z2Ui .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhlCk2z2Ui .navbar.collapsed {
  justify-content: center;
}
.cid-uhlCk2z2Ui .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhlCk2z2Ui .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhlCk2z2Ui .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhlCk2z2Ui .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhlCk2z2Ui .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhlCk2z2Ui .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhlCk2z2Ui .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhlCk2z2Ui .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhlCk2z2Ui .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhlCk2z2Ui .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhlCk2z2Ui .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhlCk2z2Ui .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhlCk2z2Ui .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhlCk2z2Ui .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhlCk2z2Ui .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhlCk2z2Ui .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhlCk2z2Ui .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhlCk2z2Ui .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhlCk2z2Ui .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhlCk2z2Ui .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhlCk2z2Ui .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhlCk2z2Ui .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhlCk2z2Ui .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhlCk2z2Ui .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhlCk2z2Ui .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhlCk2z2Ui .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhlCk2z2Ui .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhlCk2z2Ui .dropdown-item.active,
.cid-uhlCk2z2Ui .dropdown-item:active {
  background-color: transparent;
}
.cid-uhlCk2z2Ui .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhlCk2z2Ui .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhlCk2z2Ui .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhlCk2z2Ui .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhlCk2z2Ui ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhlCk2z2Ui .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhlCk2z2Ui button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhlCk2z2Ui button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhlCk2z2Ui button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhlCk2z2Ui button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlCk2z2Ui button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlCk2z2Ui button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhlCk2z2Ui nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlCk2z2Ui nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhlCk2z2Ui nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhlCk2z2Ui nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlCk2z2Ui a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhlCk2z2Ui .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-uhlCk2z2Ui .navbar {
    height: 70px;
  }
  .cid-uhlCk2z2Ui .navbar.opened {
    height: auto;
  }
  .cid-uhlCk2z2Ui .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhlCk2z2Ui .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhlCk2z2Ui .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhlCk2z2Ui .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhlCk2z2Ui .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhlCk2z2Ui .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhlCk2z2Ui .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhlCk2z2Ui .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhlCk2z2Ui .text_widget {
  margin-bottom: 32px;
}
.cid-uhlCk2z2Ui .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhlCk2z2Ui .text_widget a:hover,
.cid-uhlCk2z2Ui .text_widget a:focus {
  opacity: .8;
}
.cid-uhlCk2z2Ui .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlCk2z2Ui .navbar-caption {
  color: #0f1d07;
}
.cid-uhlCk2z2Ui .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlCk2z2Ui .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhlCk2z2Ui .navigation-wrapper {
    display: block;
  }
}
.cid-uhlCk2z2Ui .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlCk2z2Ui .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhlCk2z2Ui .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlCk2z2Ui .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhlCk2z2Ui .mbr-section-subtitle,
.cid-uhlCk2z2Ui .text_widget,
.cid-uhlCk2z2Ui .mbr-section-btn {
  text-align: center;
}
.cid-uhlCk2z2Ui a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhlCk4WUzR {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhlCk4WUzR .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhlCk4WUzR .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhlCk4WUzR .mbr-section-title {
  margin: 0;
}
.cid-uhlCk4WUzR .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhlCk4WUzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlCk4WUzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlCk61cG3 {
  background: #ffffff;
}
.cid-uhlCk61cG3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlCk61cG3 figcaption {
  position: relative;
}
.cid-uhlCk61cG3 figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlCk61cG3 .image-block {
    width: 100% !important;
  }
}
.cid-uhlCk6KpwN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhlCk6KpwN .block-text {
  color: #ffffff;
}
.cid-uhlCk7tTJV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uhlCk7tTJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlCk7tTJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlCk7tTJV .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlCk7tTJV .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlCk7tTJV .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-uhlCk7tTJV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlCk7tTJV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlCk7tTJV .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhlCk7tTJV .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhlCk8nIjc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhlCk8nIjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlCk8nIjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlCk8nIjc img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhlCk8nIjc .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhlCk8nIjc .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc .icon-wrap {
    justify-content: center;
  }
}
.cid-uhlCk8nIjc .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhlCk8nIjc a {
  font-weight: bold;
}
.cid-uhlCk8nIjc .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc .card {
    padding: 2rem 1rem;
  }
}
.cid-uhlCk8nIjc .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhlCk8nIjc .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhlCk8nIjc .container-fluid,
.cid-uhlCk8nIjc .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhlCk8nIjc .container-fluid,
  .cid-uhlCk8nIjc .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhlCk8nIjc .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhlCk8nIjc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhlCk8nIjc .mbr-section-title {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-text,
.cid-uhlCk8nIjc .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-cardtext {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhlCk8nIjc .mbr-link {
  color: #ff9945;
}
.cid-uhlEHuO1J6 {
  background-color: transparent;
}
.cid-uhlEHuO1J6 .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhlEHuO1J6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhlEHuO1J6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhlEHuO1J6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhlEHuO1J6 .menu_box .navbar.opened,
  .cid-uhlEHuO1J6 .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhlEHuO1J6 .navbar-dropdown {
  position: relative !important;
}
.cid-uhlEHuO1J6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhlEHuO1J6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhlEHuO1J6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhlEHuO1J6 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhlEHuO1J6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhlEHuO1J6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhlEHuO1J6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhlEHuO1J6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhlEHuO1J6 .offcanvas-body .mbr-text,
  .cid-uhlEHuO1J6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhlEHuO1J6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhlEHuO1J6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhlEHuO1J6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhlEHuO1J6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlEHuO1J6 .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-uhlEHuO1J6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhlEHuO1J6 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-uhlEHuO1J6 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhlEHuO1J6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhlEHuO1J6 .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhlEHuO1J6 .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .nav-item {
    margin: 0 !important;
  }
}
.cid-uhlEHuO1J6 .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhlEHuO1J6 .nav-item .nav-link:hover,
.cid-uhlEHuO1J6 .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhlEHuO1J6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhlEHuO1J6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhlEHuO1J6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlEHuO1J6 .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-uhlEHuO1J6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhlEHuO1J6 .offcanvas_box {
    display: none;
  }
}
.cid-uhlEHuO1J6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhlEHuO1J6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhlEHuO1J6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhlEHuO1J6 .container {
  display: flex;
  margin: auto;
}
.cid-uhlEHuO1J6 .iconfont-wrapper {
  color: #0f1d07;
  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-uhlEHuO1J6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhlEHuO1J6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhlEHuO1J6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhlEHuO1J6 .navbar-nav {
    margin: 0;
  }
}
.cid-uhlEHuO1J6 .dropdown-menu,
.cid-uhlEHuO1J6 .navbar.opened {
  background-color: false !important;
}
.cid-uhlEHuO1J6 .nav-item:focus,
.cid-uhlEHuO1J6 .nav-link:focus {
  outline: none;
}
.cid-uhlEHuO1J6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhlEHuO1J6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhlEHuO1J6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhlEHuO1J6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhlEHuO1J6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhlEHuO1J6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhlEHuO1J6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhlEHuO1J6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhlEHuO1J6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uhlEHuO1J6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhlEHuO1J6 .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhlEHuO1J6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhlEHuO1J6 .navbar.collapsed {
  justify-content: center;
}
.cid-uhlEHuO1J6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhlEHuO1J6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhlEHuO1J6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhlEHuO1J6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhlEHuO1J6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhlEHuO1J6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhlEHuO1J6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhlEHuO1J6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhlEHuO1J6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhlEHuO1J6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhlEHuO1J6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhlEHuO1J6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhlEHuO1J6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhlEHuO1J6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhlEHuO1J6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhlEHuO1J6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhlEHuO1J6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhlEHuO1J6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhlEHuO1J6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhlEHuO1J6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhlEHuO1J6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhlEHuO1J6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhlEHuO1J6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhlEHuO1J6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhlEHuO1J6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhlEHuO1J6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhlEHuO1J6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhlEHuO1J6 .dropdown-item.active,
.cid-uhlEHuO1J6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uhlEHuO1J6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhlEHuO1J6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhlEHuO1J6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhlEHuO1J6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhlEHuO1J6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhlEHuO1J6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhlEHuO1J6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhlEHuO1J6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhlEHuO1J6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhlEHuO1J6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlEHuO1J6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlEHuO1J6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhlEHuO1J6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlEHuO1J6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhlEHuO1J6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhlEHuO1J6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlEHuO1J6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhlEHuO1J6 .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-uhlEHuO1J6 .navbar {
    height: 70px;
  }
  .cid-uhlEHuO1J6 .navbar.opened {
    height: auto;
  }
  .cid-uhlEHuO1J6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhlEHuO1J6 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhlEHuO1J6 .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhlEHuO1J6 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhlEHuO1J6 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhlEHuO1J6 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhlEHuO1J6 .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhlEHuO1J6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhlEHuO1J6 .text_widget {
  margin-bottom: 32px;
}
.cid-uhlEHuO1J6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhlEHuO1J6 .text_widget a:hover,
.cid-uhlEHuO1J6 .text_widget a:focus {
  opacity: .8;
}
.cid-uhlEHuO1J6 .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlEHuO1J6 .navbar-caption {
  color: #0f1d07;
}
.cid-uhlEHuO1J6 .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlEHuO1J6 .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhlEHuO1J6 .navigation-wrapper {
    display: block;
  }
}
.cid-uhlEHuO1J6 .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlEHuO1J6 .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhlEHuO1J6 .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlEHuO1J6 .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhlEHuO1J6 .mbr-section-subtitle,
.cid-uhlEHuO1J6 .text_widget,
.cid-uhlEHuO1J6 .mbr-section-btn {
  text-align: center;
}
.cid-uhlEHuO1J6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhlEHwhiRG {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhlEHwhiRG .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhlEHwhiRG .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhlEHwhiRG .mbr-section-title {
  margin: 0;
}
.cid-uhlEHwhiRG .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhlEHwhiRG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHwhiRG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHxoRLG {
  background: #ffffff;
}
.cid-uhlEHxoRLG .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlEHxoRLG figcaption {
  position: relative;
}
.cid-uhlEHxoRLG figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlEHxoRLG .image-block {
    width: 100% !important;
  }
}
.cid-uhlEHyhyqX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlEHyhyqX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHyhyqX .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-uhlEHyhyqX .container {
    padding: 0 30px;
  }
}
.cid-uhlEHyhyqX .row {
  justify-content: center;
}
.cid-uhlEHyhyqX .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlEHyhyqX .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhlEHyhyqX .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlEHyhyqX .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhlEHyhyqX .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhlEHyhyqX .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhlEHyhyqX .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhlEHyhyqX .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhlEHyhyqX .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhlEHyhyqX .mbr-text {
  color: #144031;
}
.cid-uhlEHz8c7B {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2a0845;
  background: linear-gradient(90deg, #2a0845, #0c57bf);
}
.cid-uhlEHz8c7B .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhlEHz8c7B h4,
.cid-uhlEHz8c7B h5 {
  text-align: center;
}
.cid-uhlEHz8c7B p {
  text-align: center;
}
.cid-uhlEHz8c7B .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhlEHz8c7B .card-img {
  font-size: 3rem;
}
.cid-uhlEHz8c7B .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhlEHz8c7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHz8c7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHAbne4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uhlEHAUxuu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhlEHAUxuu h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhlEHAUxuu .mbr-section-subtitle {
  color: #767676;
}
.cid-uhlEHAUxuu .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhlEHAUxuu .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhlEHAUxuu H2 {
  color: #ffffff;
}
.cid-uhlEHAUxuu .mbr-text-left {
  color: #ffffff;
}
.cid-uhlEHAUxuu .mbr-text-right {
  color: #ffffff;
}
.cid-uhlEHBHlCS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlEHBHlCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHBHlCS .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-uhlEHBHlCS .container {
    padding: 0 16px;
  }
}
.cid-uhlEHBHlCS .row {
  position: relative;
  z-index: 1;
}
.cid-uhlEHBHlCS .card {
  justify-content: flex-end;
}
.cid-uhlEHBHlCS .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uhlEHBHlCS .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhlEHBHlCS .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlEHBHlCS .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uhlEHBHlCS .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uhlEHBHlCS .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uhlEHBHlCS .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uhlEHBHlCS .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlEHBHlCS .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uhlEHBHlCS .card-wrapper .card-wrap {
  background-color: #6a2be9;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlEHBHlCS .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uhlEHBHlCS .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uhlEHBHlCS .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uhlEHBHlCS .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uhlEHBHlCS .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uhlEHBHlCS .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlEHBHlCS .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uhlEHBHlCS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhlEHBHlCS .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uhlEHBHlCS .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uhlEHBHlCS .text-wrapper {
    margin-left: 0;
  }
}
.cid-uhlEHBHlCS .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uhlEHBHlCS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhlEHBHlCS .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uhlEHBHlCS .mbr-text {
  color: #000000;
}
.cid-uhlEHBHlCS .card-desc {
  color: #000000;
}
.cid-uhlEHBHlCS .card-text {
  color: #ffffff;
}
.cid-uhlEHBHlCS .card-name {
  color: #ffffff;
}
.cid-uhlEHBHlCS .card-role {
  color: #ffffff;
}
.cid-uhlEHCyjTw {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
}
.cid-uhlEHCyjTw .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhlEHCyjTw .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhlEHCyjTw h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhlEHCyjTw p {
  color: #464646;
}
.cid-uhlEHCyjTw h2 {
  color: #000000;
}
.cid-uhlEHCyjTw .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhlEHCyjTw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhlEHCyjTw .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhlEHCyjTw .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhlEHCyjTw .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlEHCyjTw .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhlEHCyjTw .mbr-text {
    text-align: center;
  }
}
.cid-uhlEHCyjTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHCyjTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHCyjTw .mbr-section-title,
.cid-uhlEHCyjTw .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlEHCyjTw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlEHDtbeb {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhlEHDtbeb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHDtbeb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHDtbeb .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlEHDtbeb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlEHDtbeb .container {
    padding: 0 16px;
  }
}
.cid-uhlEHDtbeb .card {
  justify-content: center;
}
.cid-uhlEHDtbeb .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlEHDtbeb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlEHDtbeb .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhlEHDtbeb .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhlEHDtbeb .mbr-section-title {
  color: #000000;
}
.cid-uhlEHDtbeb .mbr-text {
  color: #000000;
}
.cid-uhlEHDtbeb .mbr-desc {
  color: #000000;
}
.cid-uhlEHDtbeb .mbr-section-title,
.cid-uhlEHDtbeb .title-wrapper {
  color: #ffffff;
}
.cid-uhlEHEljkK {
  background-image: url("../../../assets/images/bounce-house-rentals7-1920x1080.jpeg");
}
.cid-uhlEHEljkK .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
  width: 100%;
  float: right;
  position: relative;
}
.cid-uhlEHEljkK .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhlEHEljkK .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhlEHEljkK .container-full-width {
  position: relative;
}
.cid-uhlEHEljkK .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-uhlEHEljkK .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-uhlEHEljkK .layer path {
  fill: #6441a5;
}
@media (min-width: 576px) {
  .cid-uhlEHEljkK .text-content {
    width: 540px;
  }
  .cid-uhlEHEljkK .column-content {
    width: 100%;
  }
  .cid-uhlEHEljkK .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-uhlEHEljkK .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-uhlEHEljkK .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-uhlEHEljkK .column-content {
    width: 50%;
  }
  .cid-uhlEHEljkK .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-uhlEHEljkK .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhlEHEljkK .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-uhlEHEljkK .column-content {
    height: 33rem;
  }
}
.cid-uhlEHEljkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHEljkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHEljkK H1 {
  text-align: center;
  color: #ffffff;
}
.cid-uhlEHFg564 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlEHFg564 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHFg564 .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-uhlEHFg564 .container {
    padding: 0 15px;
  }
}
.cid-uhlEHFg564 .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uhlEHFg564 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uhlEHFg564 .content-wrapper {
    padding-right: 0;
  }
}
.cid-uhlEHFg564 .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlEHFg564 .content-wrap {
    display: block;
  }
}
.cid-uhlEHFg564 .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlEHFg564 .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlEHFg564 .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlEHFg564 .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlEHFg564 .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uhlEHFg564 .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uhlEHFg564 .mbr-section-title {
  color: #3f1819;
  text-align: center;
}
.cid-uhlEHFg564 .mbr-desc,
.cid-uhlEHFg564 .desc-wrapper {
  color: #3f1819;
}
.cid-uhlEHG3JJK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6441a5;
}
.cid-uhlEHG3JJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHG3JJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHG3JJK .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhlEHG3JJK .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhlEHG3JJK .container {
    padding: 0 22px;
  }
}
.cid-uhlEHG3JJK .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlEHG3JJK .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlEHG3JJK .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhlEHG3JJK .image-wrapper img {
    height: 350px;
  }
}
.cid-uhlEHG3JJK .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-uhlEHG3JJK .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhlEHG3JJK .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhlEHG3JJK .panel-group .card:hover,
.cid-uhlEHG3JJK .panel-group .card:focus {
  border-top: 1px solid #e9ea88;
}
.cid-uhlEHG3JJK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlEHG3JJK .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhlEHG3JJK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlEHG3JJK .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #e9ea88;
  margin-left: 16px;
}
.cid-uhlEHG3JJK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhlEHG3JJK .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhlEHG3JJK .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhlEHG3JJK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlEHG3JJK .panel-title-edit {
  color: #ffffff;
}
.cid-uhlEHG3JJK .panel-text {
  color: #8a8588;
}
.cid-uhlEHH6sdg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlEHH6sdg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHH6sdg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHH6sdg .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhlEHH6sdg .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhlEHH6sdg .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhlEHH6sdg .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhlEHH6sdg .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .image-wrapper {
    padding-left: 0;
  }
}
.cid-uhlEHH6sdg .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhlEHH6sdg .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhlEHH6sdg .mbr-section-title {
  color: #000000;
}
.cid-uhlEHH6sdg .mbr-desc {
  color: #000000;
}
.cid-uhlEHH6sdg .mbr-text {
  color: #000000;
}
.cid-uhlEHIc5Bs {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #6441a5;
}
.cid-uhlEHIc5Bs .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlEHIc5Bs .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlEHIc5Bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHIc5Bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHIc5Bs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhlEHIc5Bs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhlEHIc5Bs .container {
    padding: 0 30px;
  }
}
.cid-uhlEHIc5Bs .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uhlEHIc5Bs .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlEHIc5Bs .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhlEHIc5Bs .text-wrapper {
  border-left: 1px solid #c7fcb5;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uhlEHIc5Bs .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uhlEHIc5Bs .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhlEHIc5Bs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlEHIc5Bs .mbr-text {
  color: #ffffff;
}
.cid-uhlK6bNAtk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlK6bNAtk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlK6bNAtk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlK6bNAtk .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlK6bNAtk .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlK6bNAtk .container {
    padding: 0 16px;
  }
}
.cid-uhlK6bNAtk .row {
  justify-content: center;
}
.cid-uhlK6bNAtk .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlK6bNAtk .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlK6bNAtk .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
}
@media (max-width: 992px) {
  .cid-uhlK6bNAtk .panel-group .card {
    padding: 24px;
  }
}
.cid-uhlK6bNAtk .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uhlK6bNAtk .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c6f15c;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #c6f15c;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-uhlK6bNAtk .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uhlK6bNAtk .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-uhlK6bNAtk .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-uhlK6bNAtk .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlK6bNAtk .mbr-section-title {
  color: #000000;
}
.cid-uhlK6bNAtk .panel-title-edit {
  color: #ffffff;
}
.cid-uhlK6bNAtk .panel-text {
  color: #ffffff;
}
.cid-uhlK6bNAtk .mbr-section-title,
.cid-uhlK6bNAtk .title-wrapper {
  text-align: center;
}
.cid-uhlEHJiVH0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #2c1616;
}
.cid-uhlEHJiVH0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHJiVH0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHJiVH0 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlEHJiVH0 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlEHJiVH0 .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-uhlEHJiVH0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlEHJiVH0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlEHJiVH0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlEHJiVH0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhlEHKdZCA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhlEHKdZCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlEHKdZCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlEHKdZCA img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhlEHKdZCA .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhlEHKdZCA .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA .icon-wrap {
    justify-content: center;
  }
}
.cid-uhlEHKdZCA .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhlEHKdZCA a {
  font-weight: bold;
}
.cid-uhlEHKdZCA .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA .card {
    padding: 2rem 1rem;
  }
}
.cid-uhlEHKdZCA .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhlEHKdZCA .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhlEHKdZCA .container-fluid,
.cid-uhlEHKdZCA .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhlEHKdZCA .container-fluid,
  .cid-uhlEHKdZCA .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhlEHKdZCA .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhlEHKdZCA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhlEHKdZCA .mbr-section-title {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-text,
.cid-uhlEHKdZCA .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-cardtext {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhlEHKdZCA .mbr-link {
  color: #ff9945;
}
.cid-uhlIL6aIEC {
  background-color: transparent;
}
.cid-uhlIL6aIEC .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhlIL6aIEC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhlIL6aIEC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhlIL6aIEC .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhlIL6aIEC .menu_box .navbar.opened,
  .cid-uhlIL6aIEC .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhlIL6aIEC .navbar-dropdown {
  position: relative !important;
}
.cid-uhlIL6aIEC .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhlIL6aIEC .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhlIL6aIEC .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhlIL6aIEC .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhlIL6aIEC .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhlIL6aIEC .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhlIL6aIEC .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhlIL6aIEC .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhlIL6aIEC .offcanvas-body .mbr-text,
  .cid-uhlIL6aIEC .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhlIL6aIEC .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhlIL6aIEC .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhlIL6aIEC ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhlIL6aIEC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlIL6aIEC .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-uhlIL6aIEC .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhlIL6aIEC 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-uhlIL6aIEC .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhlIL6aIEC .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhlIL6aIEC .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhlIL6aIEC .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .nav-item {
    margin: 0 !important;
  }
}
.cid-uhlIL6aIEC .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhlIL6aIEC .nav-item .nav-link:hover,
.cid-uhlIL6aIEC .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhlIL6aIEC .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhlIL6aIEC .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhlIL6aIEC .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlIL6aIEC .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-uhlIL6aIEC .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhlIL6aIEC .offcanvas_box {
    display: none;
  }
}
.cid-uhlIL6aIEC .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhlIL6aIEC .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhlIL6aIEC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhlIL6aIEC .container {
  display: flex;
  margin: auto;
}
.cid-uhlIL6aIEC .iconfont-wrapper {
  color: #0f1d07;
  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-uhlIL6aIEC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhlIL6aIEC .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhlIL6aIEC .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhlIL6aIEC .navbar-nav {
    margin: 0;
  }
}
.cid-uhlIL6aIEC .dropdown-menu,
.cid-uhlIL6aIEC .navbar.opened {
  background-color: false !important;
}
.cid-uhlIL6aIEC .nav-item:focus,
.cid-uhlIL6aIEC .nav-link:focus {
  outline: none;
}
.cid-uhlIL6aIEC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhlIL6aIEC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhlIL6aIEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhlIL6aIEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhlIL6aIEC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhlIL6aIEC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhlIL6aIEC .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhlIL6aIEC .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhlIL6aIEC .navbar.opened {
  transition: all 0.3s;
}
.cid-uhlIL6aIEC .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhlIL6aIEC .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhlIL6aIEC .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhlIL6aIEC .navbar.collapsed {
  justify-content: center;
}
.cid-uhlIL6aIEC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhlIL6aIEC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhlIL6aIEC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhlIL6aIEC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhlIL6aIEC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhlIL6aIEC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhlIL6aIEC .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhlIL6aIEC .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhlIL6aIEC .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhlIL6aIEC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhlIL6aIEC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhlIL6aIEC .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhlIL6aIEC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhlIL6aIEC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhlIL6aIEC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhlIL6aIEC .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhlIL6aIEC .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhlIL6aIEC .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhlIL6aIEC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhlIL6aIEC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhlIL6aIEC .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhlIL6aIEC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhlIL6aIEC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhlIL6aIEC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhlIL6aIEC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhlIL6aIEC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhlIL6aIEC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhlIL6aIEC .dropdown-item.active,
.cid-uhlIL6aIEC .dropdown-item:active {
  background-color: transparent;
}
.cid-uhlIL6aIEC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhlIL6aIEC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhlIL6aIEC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhlIL6aIEC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhlIL6aIEC ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhlIL6aIEC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhlIL6aIEC button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhlIL6aIEC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhlIL6aIEC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhlIL6aIEC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlIL6aIEC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlIL6aIEC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhlIL6aIEC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlIL6aIEC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhlIL6aIEC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhlIL6aIEC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlIL6aIEC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhlIL6aIEC .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-uhlIL6aIEC .navbar {
    height: 70px;
  }
  .cid-uhlIL6aIEC .navbar.opened {
    height: auto;
  }
  .cid-uhlIL6aIEC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhlIL6aIEC .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhlIL6aIEC .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhlIL6aIEC .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhlIL6aIEC .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhlIL6aIEC .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhlIL6aIEC .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhlIL6aIEC .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhlIL6aIEC .text_widget {
  margin-bottom: 32px;
}
.cid-uhlIL6aIEC .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhlIL6aIEC .text_widget a:hover,
.cid-uhlIL6aIEC .text_widget a:focus {
  opacity: .8;
}
.cid-uhlIL6aIEC .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlIL6aIEC .navbar-caption {
  color: #0f1d07;
}
.cid-uhlIL6aIEC .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlIL6aIEC .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhlIL6aIEC .navigation-wrapper {
    display: block;
  }
}
.cid-uhlIL6aIEC .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlIL6aIEC .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhlIL6aIEC .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlIL6aIEC .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhlIL6aIEC .mbr-section-subtitle,
.cid-uhlIL6aIEC .text_widget,
.cid-uhlIL6aIEC .mbr-section-btn {
  text-align: center;
}
.cid-uhlIL6aIEC a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhlIL7HNXl {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhlIL7HNXl .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhlIL7HNXl .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhlIL7HNXl .mbr-section-title {
  margin: 0;
}
.cid-uhlIL7HNXl .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhlIL7HNXl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlIL7HNXl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlIL8ltLB {
  background: #ffffff;
}
.cid-uhlIL8ltLB .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlIL8ltLB figcaption {
  position: relative;
}
.cid-uhlIL8ltLB figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlIL8ltLB .image-block {
    width: 100% !important;
  }
}
.cid-uhlIL8I9iE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlIL8I9iE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlIL8I9iE .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-uhlIL8I9iE .container {
    padding: 0 30px;
  }
}
.cid-uhlIL8I9iE .row {
  justify-content: center;
}
.cid-uhlIL8I9iE .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlIL8I9iE .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhlIL8I9iE .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlIL8I9iE .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhlIL8I9iE .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhlIL8I9iE .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhlIL8I9iE .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhlIL8I9iE .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhlIL8I9iE .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhlIL8I9iE .mbr-text {
  color: #144031;
}
.cid-uhlIL99RXt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2a0845;
  background: linear-gradient(90deg, #2a0845, #0c57bf);
}
.cid-uhlIL99RXt .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhlIL99RXt h4,
.cid-uhlIL99RXt h5 {
  text-align: center;
}
.cid-uhlIL99RXt p {
  text-align: center;
}
.cid-uhlIL99RXt .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhlIL99RXt .card-img {
  font-size: 3rem;
}
.cid-uhlIL99RXt .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhlIL99RXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlIL99RXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlIL9SzFK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uhlILadFuq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhlILadFuq h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhlILadFuq .mbr-section-subtitle {
  color: #767676;
}
.cid-uhlILadFuq .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhlILadFuq .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhlILadFuq H2 {
  color: #ffffff;
}
.cid-uhlILadFuq .mbr-text-left {
  color: #ffffff;
}
.cid-uhlILadFuq .mbr-text-right {
  color: #ffffff;
}
.cid-uhlILaAYQo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlILaAYQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILaAYQo .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-uhlILaAYQo .container {
    padding: 0 16px;
  }
}
.cid-uhlILaAYQo .row {
  position: relative;
  z-index: 1;
}
.cid-uhlILaAYQo .card {
  justify-content: flex-end;
}
.cid-uhlILaAYQo .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uhlILaAYQo .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhlILaAYQo .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlILaAYQo .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uhlILaAYQo .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uhlILaAYQo .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uhlILaAYQo .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uhlILaAYQo .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlILaAYQo .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uhlILaAYQo .card-wrapper .card-wrap {
  background-color: #6a2be9;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlILaAYQo .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uhlILaAYQo .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uhlILaAYQo .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uhlILaAYQo .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uhlILaAYQo .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uhlILaAYQo .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlILaAYQo .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uhlILaAYQo .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhlILaAYQo .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uhlILaAYQo .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uhlILaAYQo .text-wrapper {
    margin-left: 0;
  }
}
.cid-uhlILaAYQo .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uhlILaAYQo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhlILaAYQo .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uhlILaAYQo .mbr-text {
  color: #000000;
}
.cid-uhlILaAYQo .card-desc {
  color: #000000;
}
.cid-uhlILaAYQo .card-text {
  color: #ffffff;
}
.cid-uhlILaAYQo .card-name {
  color: #ffffff;
}
.cid-uhlILaAYQo .card-role {
  color: #ffffff;
}
.cid-uhlILb9LWJ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
}
.cid-uhlILb9LWJ .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhlILb9LWJ .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhlILb9LWJ h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhlILb9LWJ p {
  color: #464646;
}
.cid-uhlILb9LWJ h2 {
  color: #000000;
}
.cid-uhlILb9LWJ .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhlILb9LWJ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhlILb9LWJ .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhlILb9LWJ .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhlILb9LWJ .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlILb9LWJ .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhlILb9LWJ .mbr-text {
    text-align: center;
  }
}
.cid-uhlILb9LWJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILb9LWJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILb9LWJ .mbr-section-title,
.cid-uhlILb9LWJ .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlILb9LWJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlILbHTH8 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhlILbHTH8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILbHTH8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILbHTH8 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlILbHTH8 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlILbHTH8 .container {
    padding: 0 16px;
  }
}
.cid-uhlILbHTH8 .card {
  justify-content: center;
}
.cid-uhlILbHTH8 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlILbHTH8 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlILbHTH8 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhlILbHTH8 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhlILbHTH8 .mbr-section-title {
  color: #000000;
}
.cid-uhlILbHTH8 .mbr-text {
  color: #000000;
}
.cid-uhlILbHTH8 .mbr-desc {
  color: #000000;
}
.cid-uhlILbHTH8 .mbr-section-title,
.cid-uhlILbHTH8 .title-wrapper {
  color: #ffffff;
}
.cid-uhlILcd9Rm {
  background-image: url("../../../assets/images/bounce-house-rentals10-960x720.jpeg");
}
.cid-uhlILcd9Rm .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
  width: 100%;
  float: right;
  position: relative;
}
.cid-uhlILcd9Rm .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhlILcd9Rm .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhlILcd9Rm .container-full-width {
  position: relative;
}
.cid-uhlILcd9Rm .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-uhlILcd9Rm .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-uhlILcd9Rm .layer path {
  fill: #6441a5;
}
@media (min-width: 576px) {
  .cid-uhlILcd9Rm .text-content {
    width: 540px;
  }
  .cid-uhlILcd9Rm .column-content {
    width: 100%;
  }
  .cid-uhlILcd9Rm .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-uhlILcd9Rm .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-uhlILcd9Rm .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-uhlILcd9Rm .column-content {
    width: 50%;
  }
  .cid-uhlILcd9Rm .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-uhlILcd9Rm .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhlILcd9Rm .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-uhlILcd9Rm .column-content {
    height: 33rem;
  }
}
.cid-uhlILcd9Rm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILcd9Rm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILcd9Rm H1 {
  text-align: center;
  color: #ffffff;
}
.cid-uhlILcJpEI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlILcJpEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILcJpEI .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-uhlILcJpEI .container {
    padding: 0 15px;
  }
}
.cid-uhlILcJpEI .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uhlILcJpEI .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uhlILcJpEI .content-wrapper {
    padding-right: 0;
  }
}
.cid-uhlILcJpEI .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlILcJpEI .content-wrap {
    display: block;
  }
}
.cid-uhlILcJpEI .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlILcJpEI .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlILcJpEI .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlILcJpEI .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlILcJpEI .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uhlILcJpEI .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uhlILcJpEI .mbr-section-title {
  color: #3f1819;
  text-align: center;
}
.cid-uhlILcJpEI .mbr-desc,
.cid-uhlILcJpEI .desc-wrapper {
  color: #3f1819;
}
.cid-uhlILd7XkC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6441a5;
}
.cid-uhlILd7XkC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILd7XkC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILd7XkC .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhlILd7XkC .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhlILd7XkC .container {
    padding: 0 22px;
  }
}
.cid-uhlILd7XkC .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlILd7XkC .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlILd7XkC .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhlILd7XkC .image-wrapper img {
    height: 350px;
  }
}
.cid-uhlILd7XkC .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-uhlILd7XkC .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhlILd7XkC .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhlILd7XkC .panel-group .card:hover,
.cid-uhlILd7XkC .panel-group .card:focus {
  border-top: 1px solid #e9ea88;
}
.cid-uhlILd7XkC .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlILd7XkC .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhlILd7XkC .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlILd7XkC .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #e9ea88;
  margin-left: 16px;
}
.cid-uhlILd7XkC .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhlILd7XkC .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhlILd7XkC .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhlILd7XkC .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlILd7XkC .panel-title-edit {
  color: #ffffff;
}
.cid-uhlILd7XkC .panel-text {
  color: #8a8588;
}
.cid-uhlILdTNK8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlILdTNK8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILdTNK8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILdTNK8 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhlILdTNK8 .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhlILdTNK8 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhlILdTNK8 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhlILdTNK8 .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .image-wrapper {
    padding-left: 0;
  }
}
.cid-uhlILdTNK8 .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhlILdTNK8 .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhlILdTNK8 .mbr-section-title {
  color: #000000;
}
.cid-uhlILdTNK8 .mbr-desc {
  color: #000000;
}
.cid-uhlILdTNK8 .mbr-text {
  color: #000000;
}
.cid-uhlILepfhQ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #6441a5;
}
.cid-uhlILepfhQ .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlILepfhQ .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlILepfhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILepfhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILepfhQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhlILepfhQ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhlILepfhQ .container {
    padding: 0 30px;
  }
}
.cid-uhlILepfhQ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uhlILepfhQ .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlILepfhQ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhlILepfhQ .text-wrapper {
  border-left: 1px solid #c7fcb5;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uhlILepfhQ .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uhlILepfhQ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhlILepfhQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlILepfhQ .mbr-text {
  color: #ffffff;
}
.cid-uhlLfKTdyA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlLfKTdyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlLfKTdyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlLfKTdyA .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlLfKTdyA .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlLfKTdyA .container {
    padding: 0 16px;
  }
}
.cid-uhlLfKTdyA .row {
  justify-content: center;
}
.cid-uhlLfKTdyA .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlLfKTdyA .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlLfKTdyA .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
}
@media (max-width: 992px) {
  .cid-uhlLfKTdyA .panel-group .card {
    padding: 24px;
  }
}
.cid-uhlLfKTdyA .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uhlLfKTdyA .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c6f15c;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #c6f15c;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-uhlLfKTdyA .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uhlLfKTdyA .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-uhlLfKTdyA .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-uhlLfKTdyA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlLfKTdyA .mbr-section-title {
  color: #000000;
}
.cid-uhlLfKTdyA .panel-title-edit {
  color: #ffffff;
}
.cid-uhlLfKTdyA .panel-text {
  color: #ffffff;
}
.cid-uhlLfKTdyA .mbr-section-title,
.cid-uhlLfKTdyA .title-wrapper {
  text-align: center;
}
.cid-uhlILf1lNW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #2c1616;
}
.cid-uhlILf1lNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILf1lNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILf1lNW .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlILf1lNW .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlILf1lNW .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-uhlILf1lNW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlILf1lNW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlILf1lNW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlILf1lNW .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhlILfwXvG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhlILfwXvG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlILfwXvG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlILfwXvG img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhlILfwXvG .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhlILfwXvG .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG .icon-wrap {
    justify-content: center;
  }
}
.cid-uhlILfwXvG .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhlILfwXvG a {
  font-weight: bold;
}
.cid-uhlILfwXvG .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG .card {
    padding: 2rem 1rem;
  }
}
.cid-uhlILfwXvG .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhlILfwXvG .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhlILfwXvG .container-fluid,
.cid-uhlILfwXvG .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhlILfwXvG .container-fluid,
  .cid-uhlILfwXvG .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhlILfwXvG .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhlILfwXvG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhlILfwXvG .mbr-section-title {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-text,
.cid-uhlILfwXvG .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-cardtext {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhlILfwXvG .mbr-link {
  color: #ff9945;
}
.cid-uhlOXNK0fZ {
  background-color: transparent;
}
.cid-uhlOXNK0fZ .navbar-dropdown {
  background-color: #f3f3e9 !important;
  padding: 0;
}
.cid-uhlOXNK0fZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f3f3e9 !important;
  background: #f3f3e9;
}
.cid-uhlOXNK0fZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhlOXNK0fZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uhlOXNK0fZ .menu_box .navbar.opened,
  .cid-uhlOXNK0fZ .menu_box .navbar-collapse {
    background-color: #f3f3e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhlOXNK0fZ .navbar-dropdown {
  position: relative !important;
}
.cid-uhlOXNK0fZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhlOXNK0fZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhlOXNK0fZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhlOXNK0fZ .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uhlOXNK0fZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhlOXNK0fZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhlOXNK0fZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhlOXNK0fZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhlOXNK0fZ .offcanvas-body .mbr-text,
  .cid-uhlOXNK0fZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhlOXNK0fZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhlOXNK0fZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhlOXNK0fZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhlOXNK0fZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlOXNK0fZ .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-uhlOXNK0fZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhlOXNK0fZ 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-uhlOXNK0fZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-uhlOXNK0fZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uhlOXNK0fZ .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uhlOXNK0fZ .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .nav-item {
    margin: 0 !important;
  }
}
.cid-uhlOXNK0fZ .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uhlOXNK0fZ .nav-item .nav-link:hover,
.cid-uhlOXNK0fZ .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uhlOXNK0fZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhlOXNK0fZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhlOXNK0fZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhlOXNK0fZ .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-uhlOXNK0fZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhlOXNK0fZ .offcanvas_box {
    display: none;
  }
}
.cid-uhlOXNK0fZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhlOXNK0fZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhlOXNK0fZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhlOXNK0fZ .container {
  display: flex;
  margin: auto;
}
.cid-uhlOXNK0fZ .iconfont-wrapper {
  color: #0f1d07;
  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-uhlOXNK0fZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhlOXNK0fZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhlOXNK0fZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhlOXNK0fZ .navbar-nav {
    margin: 0;
  }
}
.cid-uhlOXNK0fZ .dropdown-menu,
.cid-uhlOXNK0fZ .navbar.opened {
  background-color: false !important;
}
.cid-uhlOXNK0fZ .nav-item:focus,
.cid-uhlOXNK0fZ .nav-link:focus {
  outline: none;
}
.cid-uhlOXNK0fZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhlOXNK0fZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhlOXNK0fZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhlOXNK0fZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhlOXNK0fZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhlOXNK0fZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhlOXNK0fZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhlOXNK0fZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhlOXNK0fZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uhlOXNK0fZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhlOXNK0fZ .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uhlOXNK0fZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uhlOXNK0fZ .navbar.collapsed {
  justify-content: center;
}
.cid-uhlOXNK0fZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhlOXNK0fZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhlOXNK0fZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhlOXNK0fZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhlOXNK0fZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhlOXNK0fZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhlOXNK0fZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhlOXNK0fZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhlOXNK0fZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uhlOXNK0fZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhlOXNK0fZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhlOXNK0fZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhlOXNK0fZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhlOXNK0fZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhlOXNK0fZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhlOXNK0fZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhlOXNK0fZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhlOXNK0fZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhlOXNK0fZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uhlOXNK0fZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhlOXNK0fZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhlOXNK0fZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhlOXNK0fZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhlOXNK0fZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhlOXNK0fZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhlOXNK0fZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uhlOXNK0fZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhlOXNK0fZ .dropdown-item.active,
.cid-uhlOXNK0fZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhlOXNK0fZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uhlOXNK0fZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhlOXNK0fZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhlOXNK0fZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhlOXNK0fZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhlOXNK0fZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhlOXNK0fZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f3f3e9;
  background: #90f188;
}
.cid-uhlOXNK0fZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uhlOXNK0fZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhlOXNK0fZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlOXNK0fZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhlOXNK0fZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhlOXNK0fZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlOXNK0fZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhlOXNK0fZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhlOXNK0fZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhlOXNK0fZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhlOXNK0fZ .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-uhlOXNK0fZ .navbar {
    height: 70px;
  }
  .cid-uhlOXNK0fZ .navbar.opened {
    height: auto;
  }
  .cid-uhlOXNK0fZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhlOXNK0fZ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uhlOXNK0fZ .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhlOXNK0fZ .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhlOXNK0fZ .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uhlOXNK0fZ .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uhlOXNK0fZ .navbar-caption:hover {
  color: #e5524e;
}
@media (min-width: 992px) {
  .cid-uhlOXNK0fZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhlOXNK0fZ .text_widget {
  margin-bottom: 32px;
}
.cid-uhlOXNK0fZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhlOXNK0fZ .text_widget a:hover,
.cid-uhlOXNK0fZ .text_widget a:focus {
  opacity: .8;
}
.cid-uhlOXNK0fZ .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlOXNK0fZ .navbar-caption {
  color: #0f1d07;
}
.cid-uhlOXNK0fZ .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uhlOXNK0fZ .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhlOXNK0fZ .navigation-wrapper {
    display: block;
  }
}
.cid-uhlOXNK0fZ .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlOXNK0fZ .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uhlOXNK0fZ .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uhlOXNK0fZ .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uhlOXNK0fZ .mbr-section-subtitle,
.cid-uhlOXNK0fZ .text_widget,
.cid-uhlOXNK0fZ .mbr-section-btn {
  text-align: center;
}
.cid-uhlOXNK0fZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhlOXPIR8j {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uhlOXPIR8j .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhlOXPIR8j .mbr-overlay {
  background: #c33764;
  background: linear-gradient(#c33764 -10%, #1d2671 75%);
}
.cid-uhlOXPIR8j .mbr-section-title {
  margin: 0;
}
.cid-uhlOXPIR8j .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhlOXPIR8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXPIR8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXQwlHB {
  background: #ffffff;
}
.cid-uhlOXQwlHB .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlOXQwlHB figcaption {
  position: relative;
}
.cid-uhlOXQwlHB figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlOXQwlHB .image-block {
    width: 100% !important;
  }
}
.cid-uhlOXQUge3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlOXQUge3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXQUge3 .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-uhlOXQUge3 .container {
    padding: 0 30px;
  }
}
.cid-uhlOXQUge3 .row {
  justify-content: center;
}
.cid-uhlOXQUge3 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlOXQUge3 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhlOXQUge3 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhlOXQUge3 .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhlOXQUge3 .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhlOXQUge3 .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhlOXQUge3 .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhlOXQUge3 .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhlOXQUge3 .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhlOXQUge3 .mbr-text {
  color: #144031;
}
.cid-uhlOXRnM9l {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2a0845;
  background: linear-gradient(90deg, #2a0845, #0c57bf);
}
.cid-uhlOXRnM9l .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhlOXRnM9l h4,
.cid-uhlOXRnM9l h5 {
  text-align: center;
}
.cid-uhlOXRnM9l p {
  text-align: center;
}
.cid-uhlOXRnM9l .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhlOXRnM9l .card-img {
  font-size: 3rem;
}
.cid-uhlOXRnM9l .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhlOXRnM9l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXRnM9l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXSdDC2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uhlOXSzqLE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6441a5;
}
.cid-uhlOXSzqLE h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhlOXSzqLE .mbr-section-subtitle {
  color: #767676;
}
.cid-uhlOXSzqLE .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhlOXSzqLE .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhlOXSzqLE H2 {
  color: #ffffff;
}
.cid-uhlOXSzqLE .mbr-text-left {
  color: #ffffff;
}
.cid-uhlOXSzqLE .mbr-text-right {
  color: #ffffff;
}
.cid-uhlOXSXmHO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlOXSXmHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXSXmHO .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-uhlOXSXmHO .container {
    padding: 0 16px;
  }
}
.cid-uhlOXSXmHO .row {
  position: relative;
  z-index: 1;
}
.cid-uhlOXSXmHO .card {
  justify-content: flex-end;
}
.cid-uhlOXSXmHO .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uhlOXSXmHO .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXSXmHO .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlOXSXmHO .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uhlOXSXmHO .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uhlOXSXmHO .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uhlOXSXmHO .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uhlOXSXmHO .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlOXSXmHO .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uhlOXSXmHO .card-wrapper .card-wrap {
  background-color: #6a2be9;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlOXSXmHO .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uhlOXSXmHO .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uhlOXSXmHO .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uhlOXSXmHO .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uhlOXSXmHO .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uhlOXSXmHO .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlOXSXmHO .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uhlOXSXmHO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhlOXSXmHO .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uhlOXSXmHO .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXSXmHO .text-wrapper {
    margin-left: 0;
  }
}
.cid-uhlOXSXmHO .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uhlOXSXmHO .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhlOXSXmHO .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uhlOXSXmHO .mbr-text {
  color: #000000;
}
.cid-uhlOXSXmHO .card-desc {
  color: #000000;
}
.cid-uhlOXSXmHO .card-text {
  color: #ffffff;
}
.cid-uhlOXSXmHO .card-name {
  color: #ffffff;
}
.cid-uhlOXSXmHO .card-role {
  color: #ffffff;
}
.cid-uhlOXTz8Us {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
}
.cid-uhlOXTz8Us .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhlOXTz8Us .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhlOXTz8Us h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhlOXTz8Us p {
  color: #464646;
}
.cid-uhlOXTz8Us h2 {
  color: #000000;
}
.cid-uhlOXTz8Us .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhlOXTz8Us .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhlOXTz8Us .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhlOXTz8Us .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhlOXTz8Us .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhlOXTz8Us .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhlOXTz8Us .mbr-text {
    text-align: center;
  }
}
.cid-uhlOXTz8Us .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXTz8Us .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXTz8Us .mbr-section-title,
.cid-uhlOXTz8Us .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlOXTz8Us .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlOXUbzbG {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhlOXUbzbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXUbzbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXUbzbG .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlOXUbzbG .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXUbzbG .container {
    padding: 0 16px;
  }
}
.cid-uhlOXUbzbG .card {
  justify-content: center;
}
.cid-uhlOXUbzbG .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlOXUbzbG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlOXUbzbG .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhlOXUbzbG .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhlOXUbzbG .mbr-section-title {
  color: #000000;
}
.cid-uhlOXUbzbG .mbr-text {
  color: #000000;
}
.cid-uhlOXUbzbG .mbr-desc {
  color: #000000;
}
.cid-uhlOXUbzbG .mbr-section-title,
.cid-uhlOXUbzbG .title-wrapper {
  color: #ffffff;
}
.cid-uhlOXUDOoM {
  background-image: url("../../../assets/images/bounce-house-rentals13-1440x1080.jpeg");
}
.cid-uhlOXUDOoM .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6441a5;
  width: 100%;
  float: right;
  position: relative;
}
.cid-uhlOXUDOoM .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhlOXUDOoM .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhlOXUDOoM .container-full-width {
  position: relative;
}
.cid-uhlOXUDOoM .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-uhlOXUDOoM .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-uhlOXUDOoM .layer path {
  fill: #6441a5;
}
@media (min-width: 576px) {
  .cid-uhlOXUDOoM .text-content {
    width: 540px;
  }
  .cid-uhlOXUDOoM .column-content {
    width: 100%;
  }
  .cid-uhlOXUDOoM .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-uhlOXUDOoM .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-uhlOXUDOoM .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-uhlOXUDOoM .column-content {
    width: 50%;
  }
  .cid-uhlOXUDOoM .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-uhlOXUDOoM .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhlOXUDOoM .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-uhlOXUDOoM .column-content {
    height: 33rem;
  }
}
.cid-uhlOXUDOoM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXUDOoM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXUDOoM H1 {
  text-align: center;
  color: #ffffff;
}
.cid-uhlOXVfUQ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlOXVfUQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXVfUQ3 .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-uhlOXVfUQ3 .container {
    padding: 0 15px;
  }
}
.cid-uhlOXVfUQ3 .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uhlOXVfUQ3 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uhlOXVfUQ3 .content-wrapper {
    padding-right: 0;
  }
}
.cid-uhlOXVfUQ3 .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlOXVfUQ3 .content-wrap {
    display: block;
  }
}
.cid-uhlOXVfUQ3 .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlOXVfUQ3 .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlOXVfUQ3 .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlOXVfUQ3 .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uhlOXVfUQ3 .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uhlOXVfUQ3 .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uhlOXVfUQ3 .mbr-section-title {
  color: #3f1819;
  text-align: center;
}
.cid-uhlOXVfUQ3 .mbr-desc,
.cid-uhlOXVfUQ3 .desc-wrapper {
  color: #3f1819;
}
.cid-uhlOXVHukX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6441a5;
}
.cid-uhlOXVHukX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXVHukX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXVHukX .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhlOXVHukX .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXVHukX .container {
    padding: 0 22px;
  }
}
.cid-uhlOXVHukX .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlOXVHukX .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlOXVHukX .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhlOXVHukX .image-wrapper img {
    height: 350px;
  }
}
.cid-uhlOXVHukX .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-uhlOXVHukX .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhlOXVHukX .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhlOXVHukX .panel-group .card:hover,
.cid-uhlOXVHukX .panel-group .card:focus {
  border-top: 1px solid #e9ea88;
}
.cid-uhlOXVHukX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlOXVHukX .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhlOXVHukX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlOXVHukX .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #e9ea88;
  margin-left: 16px;
}
.cid-uhlOXVHukX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhlOXVHukX .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhlOXVHukX .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhlOXVHukX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlOXVHukX .panel-title-edit {
  color: #ffffff;
}
.cid-uhlOXVHukX .panel-text {
  color: #8a8588;
}
.cid-uhlOXWBADE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlOXWBADE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXWBADE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXWBADE .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhlOXWBADE .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhlOXWBADE .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhlOXWBADE .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhlOXWBADE .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .image-wrapper {
    padding-left: 0;
  }
}
.cid-uhlOXWBADE .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhlOXWBADE .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhlOXWBADE .mbr-section-title {
  color: #000000;
}
.cid-uhlOXWBADE .mbr-desc {
  color: #000000;
}
.cid-uhlOXWBADE .mbr-text {
  color: #000000;
}
.cid-uhlOXX7buB {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #6441a5;
}
.cid-uhlOXX7buB .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlOXX7buB .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #ffffff 43%, #4284df 100%);
}
.cid-uhlOXX7buB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXX7buB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXX7buB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhlOXX7buB .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXX7buB .container {
    padding: 0 30px;
  }
}
.cid-uhlOXX7buB .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uhlOXX7buB .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uhlOXX7buB .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhlOXX7buB .text-wrapper {
  border-left: 1px solid #c7fcb5;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uhlOXX7buB .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uhlOXX7buB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhlOXX7buB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlOXX7buB .mbr-text {
  color: #ffffff;
}
.cid-uhlSNA7MKH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2c1616;
}
.cid-uhlSNA7MKH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlSNA7MKH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlSNA7MKH .row {
  flex-direction: row-reverse;
}
.cid-uhlOXXBBdG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlOXXBBdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXXBBdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXXBBdG .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhlOXXBBdG .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhlOXXBBdG .container {
    padding: 0 16px;
  }
}
.cid-uhlOXXBBdG .row {
  justify-content: center;
}
.cid-uhlOXXBBdG .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhlOXXBBdG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhlOXXBBdG .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #6441a5;
}
@media (max-width: 992px) {
  .cid-uhlOXXBBdG .panel-group .card {
    padding: 24px;
  }
}
.cid-uhlOXXBBdG .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uhlOXXBBdG .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c6f15c;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #c6f15c;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-uhlOXXBBdG .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uhlOXXBBdG .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-uhlOXXBBdG .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-uhlOXXBBdG .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlOXXBBdG .mbr-section-title {
  color: #000000;
}
.cid-uhlOXXBBdG .panel-title-edit {
  color: #ffffff;
}
.cid-uhlOXXBBdG .panel-text {
  color: #ffffff;
}
.cid-uhlOXXBBdG .mbr-section-title,
.cid-uhlOXXBBdG .title-wrapper {
  text-align: center;
}
.cid-uhlOXYgFmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #2c1616;
}
.cid-uhlOXYgFmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXYgFmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXYgFmB .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlOXYgFmB .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlOXYgFmB .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-uhlOXYgFmB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlOXYgFmB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlOXYgFmB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlOXYgFmB .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhlOXYMebi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9473d2;
}
.cid-uhlOXYMebi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlOXYMebi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlOXYMebi img {
  width: 180px;
  border-radius: 0 !important;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi img {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uhlOXYMebi .mbr-list {
  line-height: 2;
  color: #ffffff;
}
.cid-uhlOXYMebi .icon-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi .icon-wrap {
    justify-content: center;
  }
}
.cid-uhlOXYMebi .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: WHITE;
  margin: 0 1rem;
  margin-bottom: 2rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #e5524e, #f27d7a);
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi .mbr-iconfont {
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
  }
}
.cid-uhlOXYMebi a {
  font-weight: bold;
}
.cid-uhlOXYMebi .card {
  padding: 3rem;
  background: linear-gradient(to bottom, #9473d2, #7237a2);
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi .card {
    padding: 2rem 1rem;
  }
}
.cid-uhlOXYMebi .row-bg {
  justify-content: space-between;
  background: #000000;
  border-radius: 4rem;
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uhlOXYMebi .row-bg {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi .row-bg {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
  }
}
.cid-uhlOXYMebi .container-fluid,
.cid-uhlOXYMebi .container {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-uhlOXYMebi .container-fluid,
  .cid-uhlOXYMebi .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1400px) {
  .cid-uhlOXYMebi .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uhlOXYMebi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhlOXYMebi .mbr-section-title {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-text,
.cid-uhlOXYMebi .mbr-section-btn {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-cardtext {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-section-cardtitle {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-section-cardsubtitle {
  color: #ffffff;
}
.cid-uhlOXYMebi .mbr-link {
  color: #ff9945;
}
