body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Courgette', handwriting;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Courgette', handwriting;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Courgette', handwriting;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Courgette', handwriting;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Courgette', handwriting;
  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-uhm982pVgu .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .menu_box .navbar.opened,
  .cid-uhm982pVgu .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhm982pVgu .navbar-dropdown {
  position: relative !important;
}
.cid-uhm982pVgu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhm982pVgu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhm982pVgu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhm982pVgu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhm982pVgu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhm982pVgu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-body .mbr-text,
  .cid-uhm982pVgu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhm982pVgu .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhm982pVgu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhm982pVgu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhm982pVgu .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhm982pVgu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhm982pVgu .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .nav-item {
    margin: 0 !important;
  }
}
.cid-uhm982pVgu .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhm982pVgu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhm982pVgu .offcanvas_box {
    display: none;
  }
}
.cid-uhm982pVgu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhm982pVgu .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhm982pVgu .container {
  display: flex;
  margin: auto;
}
.cid-uhm982pVgu .iconfont-wrapper {
  color: #000000;
  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-uhm982pVgu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhm982pVgu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhm982pVgu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .navbar-nav {
    margin: 0;
  }
}
.cid-uhm982pVgu .dropdown-menu,
.cid-uhm982pVgu .navbar.opened {
  background-color: false !important;
}
.cid-uhm982pVgu .nav-item:focus,
.cid-uhm982pVgu .nav-link:focus {
  outline: none;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhm982pVgu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhm982pVgu .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhm982pVgu .navbar.opened {
  transition: all 0.3s;
}
.cid-uhm982pVgu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhm982pVgu .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhm982pVgu .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhm982pVgu .navbar.collapsed {
  justify-content: center;
}
.cid-uhm982pVgu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhm982pVgu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhm982pVgu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhm982pVgu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhm982pVgu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhm982pVgu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhm982pVgu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhm982pVgu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhm982pVgu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhm982pVgu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhm982pVgu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhm982pVgu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhm982pVgu .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-uhm982pVgu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhm982pVgu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhm982pVgu .dropdown-item.active,
.cid-uhm982pVgu .dropdown-item:active {
  background-color: transparent;
}
.cid-uhm982pVgu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhm982pVgu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhm982pVgu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhm982pVgu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhm982pVgu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhm982pVgu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhm982pVgu .navbar {
    height: 70px;
  }
  .cid-uhm982pVgu .navbar.opened {
    height: auto;
  }
  .cid-uhm982pVgu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhm982pVgu .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhm982pVgu .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhm982pVgu .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhm982pVgu .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhm982pVgu .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhm982pVgu .text_widget {
  margin-bottom: 32px;
}
.cid-uhm982pVgu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .text_widget a:hover {
  opacity: .5;
}
.cid-uhm982pVgu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhm982pVgu .navbar-caption {
  color: #000000;
}
.cid-uhm982pVgu .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhm982pVgu .mbr-section-subtitle,
.cid-uhm982pVgu .text_widget,
.cid-uhm982pVgu .mbr-section-btn {
  text-align: left;
}
.cid-uhm982pVgu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmbaKU2PU {
  background-image: url("../../../assets/images/bounce-house-rentals17-1334x750.jpg");
}
.cid-uhmbaKU2PU .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhmbaKU2PU .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhmbaKU2PU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmbaKU2PU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfIh1UXFe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.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: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.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-uhfIs8o0Zf .mbr-text {
  color: #000000;
}
.cid-uhfIwRnOBM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
.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: #000000;
  text-align: left;
}
.cid-uhfIwRnOBM .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-uhmfs1pWXO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhmfs1pWXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmfs1pWXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmfs1pWXO .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .container {
    padding: 0 30px;
  }
}
.cid-uhmfs1pWXO .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-uhmfs1pWXO .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .image-wrapper img {
    height: 300px;
  }
}
.cid-uhmfs1pWXO .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .text-wrapper {
    margin: 0;
  }
}
.cid-uhmfs1pWXO .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmfs1pWXO .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmfs1pWXO .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uhmfs1pWXO .mbr-section-title {
  color: #ffffff;
}
.cid-uhmfs1pWXO .mbr-text {
  color: #000000;
}
.cid-uhmfs1pWXO .mbr-section-title,
.cid-uhmfs1pWXO .mbr-section-btn {
  color: #000000;
}
.cid-uhmfni4ymc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmfni4ymc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmfni4ymc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmfni4ymc .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .container {
    padding: 0 30px;
  }
}
.cid-uhmfni4ymc .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmfni4ymc .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmfni4ymc .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmfni4ymc .mbr-section-title {
  color: #ffffff;
}
.cid-uhmfni4ymc .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmfni4ymc .mbr-text {
  color: #000000;
}
.cid-uhmfni4ymc .mbr-number {
  color: #FE5115;
}
.cid-uhfKDPqtco {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.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;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uhfKDPqtco .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhfKDPqtco .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@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;
  }
}
.cid-uhfKDPqtco .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@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: #000000;
  text-align: center;
}
.cid-uhfKDPqtco .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhfL1mDx8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.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: #ffffff;
  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: #000000;
  text-align: center;
}
.cid-uhmcYT1ojd {
  background-color: #ffffff;
}
.cid-uhmcYT1ojd .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmcYT1ojd .mbr-section-text {
  word-break: break-word;
}
.cid-uhmcYT1ojd .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhmcYT1ojd .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmcYT1ojd .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhmcYT1ojd .mbr-text {
    text-align: center;
  }
}
.cid-uhmcYT1ojd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmcYT1ojd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmcYT1ojd H1 {
  text-align: center;
  color: #000000;
}
.cid-uhmdKrCdDa {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
@media (min-width: 768px) {
  .cid-uhmdKrCdDa {
    align-items: center;
  }
  .cid-uhmdKrCdDa .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhmdKrCdDa .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhmdKrCdDa {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhmdKrCdDa .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhmdKrCdDa .content-wrap {
    width: 100%;
  }
}
.cid-uhmdKrCdDa .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhmdKrCdDa .mbr-text,
.cid-uhmdKrCdDa .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhlphkPAFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.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: #000000;
  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 #000000;
}
.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: #000000;
  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: #000000;
}
.cid-uhlphkPAFX .panel-text {
  color: #8a8588;
}
.cid-uhfMr9ggh4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.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;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhfMr9ggh4 .image-wrapper {
    padding-right: 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-uhmeHXR4MD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmeHXR4MD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmeHXR4MD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmeHXR4MD .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .container {
    padding: 0 30px;
  }
}
.cid-uhmeHXR4MD .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmeHXR4MD .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e9ea88;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmeHXR4MD .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmeHXR4MD .mbr-section-title {
  color: #ffffff;
}
.cid-uhmeHXR4MD .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmeHXR4MD .mbr-text {
  color: #000000;
}
.cid-uhmeHXR4MD .mbr-number {
  color: #FE5115;
}
.cid-uhli6AZycC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.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-uhmgoe62Oj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmgoe62Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmgoe62Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmgoe62Oj .row {
  justify-content: space-between;
}
.cid-uhmgoe62Oj .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:hover,
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .mbr-section-title {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-text {
  color: #000000;
}
.cid-uhmgoe62Oj .list {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-copy {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc,
.cid-uhmgoe62Oj .social-wrapper {
  text-align: center;
}
.cid-uhmgoe62Oj .mbr-copy,
.cid-uhmgoe62Oj .mbr-section-btn-main {
  text-align: center;
}
.cid-uhm8XoCH0p {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bounce-house-rentals14-1600x788.jpg");
}
.cid-uhm8XoCH0p .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhm8XoCH0p .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhm8XoCH0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhm8XoCH0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAnlHll {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
.cid-uhlBAnlHll .block-text {
  color: #2c1616;
}
.cid-uhlBAyAJxU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #2c1616;
}
.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: #ffffff;
  text-align: center;
}
.cid-uhlBAyAJxU .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhm982pVgu .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .menu_box .navbar.opened,
  .cid-uhm982pVgu .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhm982pVgu .navbar-dropdown {
  position: relative !important;
}
.cid-uhm982pVgu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhm982pVgu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhm982pVgu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhm982pVgu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhm982pVgu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhm982pVgu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-body .mbr-text,
  .cid-uhm982pVgu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhm982pVgu .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhm982pVgu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhm982pVgu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhm982pVgu .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhm982pVgu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhm982pVgu .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .nav-item {
    margin: 0 !important;
  }
}
.cid-uhm982pVgu .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhm982pVgu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhm982pVgu .offcanvas_box {
    display: none;
  }
}
.cid-uhm982pVgu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhm982pVgu .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhm982pVgu .container {
  display: flex;
  margin: auto;
}
.cid-uhm982pVgu .iconfont-wrapper {
  color: #000000;
  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-uhm982pVgu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhm982pVgu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhm982pVgu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .navbar-nav {
    margin: 0;
  }
}
.cid-uhm982pVgu .dropdown-menu,
.cid-uhm982pVgu .navbar.opened {
  background-color: false !important;
}
.cid-uhm982pVgu .nav-item:focus,
.cid-uhm982pVgu .nav-link:focus {
  outline: none;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhm982pVgu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhm982pVgu .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhm982pVgu .navbar.opened {
  transition: all 0.3s;
}
.cid-uhm982pVgu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhm982pVgu .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhm982pVgu .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhm982pVgu .navbar.collapsed {
  justify-content: center;
}
.cid-uhm982pVgu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhm982pVgu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhm982pVgu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhm982pVgu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhm982pVgu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhm982pVgu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhm982pVgu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhm982pVgu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhm982pVgu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhm982pVgu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhm982pVgu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhm982pVgu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhm982pVgu .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-uhm982pVgu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhm982pVgu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhm982pVgu .dropdown-item.active,
.cid-uhm982pVgu .dropdown-item:active {
  background-color: transparent;
}
.cid-uhm982pVgu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhm982pVgu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhm982pVgu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhm982pVgu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhm982pVgu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhm982pVgu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhm982pVgu .navbar {
    height: 70px;
  }
  .cid-uhm982pVgu .navbar.opened {
    height: auto;
  }
  .cid-uhm982pVgu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhm982pVgu .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhm982pVgu .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhm982pVgu .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhm982pVgu .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhm982pVgu .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhm982pVgu .text_widget {
  margin-bottom: 32px;
}
.cid-uhm982pVgu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .text_widget a:hover {
  opacity: .5;
}
.cid-uhm982pVgu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhm982pVgu .navbar-caption {
  color: #000000;
}
.cid-uhm982pVgu .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhm982pVgu .mbr-section-subtitle,
.cid-uhm982pVgu .text_widget,
.cid-uhm982pVgu .mbr-section-btn {
  text-align: left;
}
.cid-uhm982pVgu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmgoe62Oj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmgoe62Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmgoe62Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmgoe62Oj .row {
  justify-content: space-between;
}
.cid-uhmgoe62Oj .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:hover,
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .mbr-section-title {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-text {
  color: #000000;
}
.cid-uhmgoe62Oj .list {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-copy {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc,
.cid-uhmgoe62Oj .social-wrapper {
  text-align: center;
}
.cid-uhmgoe62Oj .mbr-copy,
.cid-uhmgoe62Oj .mbr-section-btn-main {
  text-align: center;
}
.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: #e9ea88;
}
.cid-uhlCk6KpwN .block-text {
  color: #000000;
}
.cid-uhlCk7tTJV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.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: #ffffff;
  text-align: center;
}
.cid-uhlCk7tTJV .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhm982pVgu .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhm982pVgu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .menu_box .navbar.opened,
  .cid-uhm982pVgu .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhm982pVgu .navbar-dropdown {
  position: relative !important;
}
.cid-uhm982pVgu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhm982pVgu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhm982pVgu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhm982pVgu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhm982pVgu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhm982pVgu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhm982pVgu .offcanvas-body .mbr-text,
  .cid-uhm982pVgu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhm982pVgu .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhm982pVgu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhm982pVgu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhm982pVgu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhm982pVgu .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhm982pVgu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhm982pVgu .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .nav-item {
    margin: 0 !important;
  }
}
.cid-uhm982pVgu .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhm982pVgu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhm982pVgu .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-uhm982pVgu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhm982pVgu .offcanvas_box {
    display: none;
  }
}
.cid-uhm982pVgu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhm982pVgu .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhm982pVgu .container {
  display: flex;
  margin: auto;
}
.cid-uhm982pVgu .iconfont-wrapper {
  color: #000000;
  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-uhm982pVgu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhm982pVgu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhm982pVgu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .navbar-nav {
    margin: 0;
  }
}
.cid-uhm982pVgu .dropdown-menu,
.cid-uhm982pVgu .navbar.opened {
  background-color: false !important;
}
.cid-uhm982pVgu .nav-item:focus,
.cid-uhm982pVgu .nav-link:focus {
  outline: none;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhm982pVgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhm982pVgu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhm982pVgu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhm982pVgu .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhm982pVgu .navbar.opened {
  transition: all 0.3s;
}
.cid-uhm982pVgu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhm982pVgu .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhm982pVgu .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhm982pVgu .navbar.collapsed {
  justify-content: center;
}
.cid-uhm982pVgu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhm982pVgu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhm982pVgu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhm982pVgu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhm982pVgu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhm982pVgu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhm982pVgu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhm982pVgu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhm982pVgu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhm982pVgu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhm982pVgu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhm982pVgu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhm982pVgu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhm982pVgu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhm982pVgu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhm982pVgu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhm982pVgu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhm982pVgu .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-uhm982pVgu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhm982pVgu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhm982pVgu .dropdown-item.active,
.cid-uhm982pVgu .dropdown-item:active {
  background-color: transparent;
}
.cid-uhm982pVgu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhm982pVgu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhm982pVgu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhm982pVgu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhm982pVgu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhm982pVgu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhm982pVgu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhm982pVgu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhm982pVgu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhm982pVgu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhm982pVgu .navbar {
    height: 70px;
  }
  .cid-uhm982pVgu .navbar.opened {
    height: auto;
  }
  .cid-uhm982pVgu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhm982pVgu .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhm982pVgu .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhm982pVgu .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhm982pVgu .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhm982pVgu .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhm982pVgu .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhm982pVgu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhm982pVgu .text_widget {
  margin-bottom: 32px;
}
.cid-uhm982pVgu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhm982pVgu .text_widget a:hover {
  opacity: .5;
}
.cid-uhm982pVgu .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhm982pVgu .navbar-caption {
  color: #000000;
}
.cid-uhm982pVgu .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhm982pVgu .mbr-section-subtitle,
.cid-uhm982pVgu .text_widget,
.cid-uhm982pVgu .mbr-section-btn {
  text-align: left;
}
.cid-uhm982pVgu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmgoe62Oj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmgoe62Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmgoe62Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmgoe62Oj .row {
  justify-content: space-between;
}
.cid-uhmgoe62Oj .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmgoe62Oj .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:hover,
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmgoe62Oj .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmgoe62Oj .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmgoe62Oj .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmgoe62Oj .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmgoe62Oj .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmgoe62Oj .mbr-section-title {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-text {
  color: #000000;
}
.cid-uhmgoe62Oj .list {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-copy {
  color: #000000;
}
.cid-uhmgoe62Oj .mbr-desc,
.cid-uhmgoe62Oj .social-wrapper {
  text-align: center;
}
.cid-uhmgoe62Oj .mbr-copy,
.cid-uhmgoe62Oj .mbr-section-btn-main {
  text-align: center;
}
.cid-uhmnFjVziQ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhmnFjVziQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhmnFjVziQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .menu_box .navbar.opened,
  .cid-uhmnFjVziQ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhmnFjVziQ .navbar-dropdown {
  position: relative !important;
}
.cid-uhmnFjVziQ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhmnFjVziQ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhmnFjVziQ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhmnFjVziQ .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhmnFjVziQ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhmnFjVziQ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhmnFjVziQ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhmnFjVziQ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhmnFjVziQ .offcanvas-body .mbr-text,
  .cid-uhmnFjVziQ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhmnFjVziQ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhmnFjVziQ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhmnFjVziQ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhmnFjVziQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmnFjVziQ .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-uhmnFjVziQ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhmnFjVziQ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhmnFjVziQ .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhmnFjVziQ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhmnFjVziQ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .nav-item {
    margin: 0 !important;
  }
}
.cid-uhmnFjVziQ .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhmnFjVziQ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhmnFjVziQ .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhmnFjVziQ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhmnFjVziQ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhmnFjVziQ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmnFjVziQ .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-uhmnFjVziQ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhmnFjVziQ .offcanvas_box {
    display: none;
  }
}
.cid-uhmnFjVziQ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhmnFjVziQ .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhmnFjVziQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhmnFjVziQ .container {
  display: flex;
  margin: auto;
}
.cid-uhmnFjVziQ .iconfont-wrapper {
  color: #000000;
  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-uhmnFjVziQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhmnFjVziQ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhmnFjVziQ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhmnFjVziQ .navbar-nav {
    margin: 0;
  }
}
.cid-uhmnFjVziQ .dropdown-menu,
.cid-uhmnFjVziQ .navbar.opened {
  background-color: false !important;
}
.cid-uhmnFjVziQ .nav-item:focus,
.cid-uhmnFjVziQ .nav-link:focus {
  outline: none;
}
.cid-uhmnFjVziQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhmnFjVziQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhmnFjVziQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhmnFjVziQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhmnFjVziQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhmnFjVziQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhmnFjVziQ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhmnFjVziQ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhmnFjVziQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uhmnFjVziQ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhmnFjVziQ .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhmnFjVziQ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhmnFjVziQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhmnFjVziQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhmnFjVziQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhmnFjVziQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhmnFjVziQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhmnFjVziQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhmnFjVziQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhmnFjVziQ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhmnFjVziQ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhmnFjVziQ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhmnFjVziQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhmnFjVziQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhmnFjVziQ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhmnFjVziQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhmnFjVziQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhmnFjVziQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhmnFjVziQ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhmnFjVziQ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhmnFjVziQ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhmnFjVziQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhmnFjVziQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhmnFjVziQ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhmnFjVziQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhmnFjVziQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhmnFjVziQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhmnFjVziQ .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-uhmnFjVziQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhmnFjVziQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhmnFjVziQ .dropdown-item.active,
.cid-uhmnFjVziQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhmnFjVziQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhmnFjVziQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhmnFjVziQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhmnFjVziQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhmnFjVziQ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhmnFjVziQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhmnFjVziQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhmnFjVziQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhmnFjVziQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhmnFjVziQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmnFjVziQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmnFjVziQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhmnFjVziQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmnFjVziQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhmnFjVziQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhmnFjVziQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmnFjVziQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhmnFjVziQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhmnFjVziQ .navbar {
    height: 70px;
  }
  .cid-uhmnFjVziQ .navbar.opened {
    height: auto;
  }
  .cid-uhmnFjVziQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhmnFjVziQ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhmnFjVziQ .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhmnFjVziQ .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhmnFjVziQ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhmnFjVziQ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhmnFjVziQ .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhmnFjVziQ .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhmnFjVziQ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhmnFjVziQ .text_widget {
  margin-bottom: 32px;
}
.cid-uhmnFjVziQ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhmnFjVziQ .text_widget a:hover {
  opacity: .5;
}
.cid-uhmnFjVziQ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhmnFjVziQ .navbar-caption {
  color: #000000;
}
.cid-uhmnFjVziQ .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhmnFjVziQ .mbr-section-subtitle,
.cid-uhmnFjVziQ .text_widget,
.cid-uhmnFjVziQ .mbr-section-btn {
  text-align: left;
}
.cid-uhmnFjVziQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmnFo5GBn {
  background-image: url("../../../assets/images/bounce-house-rentals19-1200x800.jpg");
}
.cid-uhmnFo5GBn .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhmnFo5GBn .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhmnFo5GBn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFo5GBn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFoM7px {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmnFoM7px .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFoM7px .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-uhmnFoM7px .container {
    padding: 0 30px;
  }
}
.cid-uhmnFoM7px .row {
  justify-content: center;
}
.cid-uhmnFoM7px .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFoM7px .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhmnFoM7px .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFoM7px .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhmnFoM7px .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhmnFoM7px .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhmnFoM7px .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmnFoM7px .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhmnFoM7px .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhmnFoM7px .mbr-text {
  color: #144031;
}
.cid-uhmnFpwg7b {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhmnFpwg7b .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhmnFpwg7b h4,
.cid-uhmnFpwg7b h5 {
  text-align: center;
}
.cid-uhmnFpwg7b p {
  text-align: center;
}
.cid-uhmnFpwg7b .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhmnFpwg7b .card-img {
  font-size: 3rem;
}
.cid-uhmnFpwg7b .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhmnFpwg7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFpwg7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFpwg7b .mbr-text {
  color: #000000;
}
.cid-uhmnFqJXRb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
.cid-uhmnFqJXRb h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhmnFqJXRb .mbr-section-subtitle {
  color: #767676;
}
.cid-uhmnFqJXRb .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhmnFqJXRb .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhmnFqJXRb H2 {
  color: #ffffff;
}
.cid-uhmnFqJXRb .mbr-text-left {
  color: #000000;
  text-align: left;
}
.cid-uhmnFqJXRb .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-uhmnFrnAlo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhmnFrnAlo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFrnAlo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFrnAlo .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .container {
    padding: 0 30px;
  }
}
.cid-uhmnFrnAlo .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-uhmnFrnAlo .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .image-wrapper img {
    height: 300px;
  }
}
.cid-uhmnFrnAlo .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .text-wrapper {
    margin: 0;
  }
}
.cid-uhmnFrnAlo .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmnFrnAlo .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmnFrnAlo .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uhmnFrnAlo .mbr-section-title {
  color: #ffffff;
}
.cid-uhmnFrnAlo .mbr-text {
  color: #000000;
}
.cid-uhmnFrnAlo .mbr-section-title,
.cid-uhmnFrnAlo .mbr-section-btn {
  color: #000000;
}
.cid-uhmnFsdNZ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmnFsdNZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFsdNZ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFsdNZ3 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .container {
    padding: 0 30px;
  }
}
.cid-uhmnFsdNZ3 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmnFsdNZ3 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmnFsdNZ3 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmnFsdNZ3 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmnFsdNZ3 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmnFsdNZ3 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmnFsdNZ3 .mbr-section-title {
  color: #ffffff;
}
.cid-uhmnFsdNZ3 .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmnFsdNZ3 .mbr-text {
  color: #000000;
}
.cid-uhmnFsdNZ3 .mbr-number {
  color: #FE5115;
}
.cid-uhmAoMvtzQ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #2c1616;
}
.cid-uhmAoMvtzQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmAoMvtzQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmAoMvtzQ .row {
  flex-direction: row-reverse;
}
.cid-uhmnFt2LOA {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhmnFt2LOA .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmnFt2LOA .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhmnFt2LOA h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhmnFt2LOA p {
  color: #464646;
}
.cid-uhmnFt2LOA h2 {
  color: #000000;
}
.cid-uhmnFt2LOA .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uhmnFt2LOA .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhmnFt2LOA .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uhmnFt2LOA .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhmnFt2LOA .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmnFt2LOA .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uhmnFt2LOA .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uhmnFt2LOA .mbr-text {
    text-align: center;
  }
}
.cid-uhmnFt2LOA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFt2LOA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFt2LOA .mbr-section-title,
.cid-uhmnFt2LOA .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhmnFt2LOA .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhmnFulUbD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmnFulUbD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFulUbD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFulUbD .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFulUbD .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFulUbD .container {
    padding: 0 16px;
  }
}
.cid-uhmnFulUbD .card {
  justify-content: center;
}
.cid-uhmnFulUbD .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: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhmnFulUbD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhmnFulUbD .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhmnFulUbD .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhmnFulUbD .mbr-section-title {
  color: #000000;
}
.cid-uhmnFulUbD .mbr-text {
  color: #000000;
}
.cid-uhmnFulUbD .mbr-desc {
  color: #000000;
}
.cid-uhmnFulUbD .mbr-section-title,
.cid-uhmnFulUbD .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uhmnFyF9rL {
  background-color: #ffffff;
}
.cid-uhmnFyF9rL .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmnFyF9rL .mbr-section-text {
  word-break: break-word;
}
.cid-uhmnFyF9rL .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhmnFyF9rL .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmnFyF9rL .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhmnFyF9rL .mbr-text {
    text-align: center;
  }
}
.cid-uhmnFyF9rL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFyF9rL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFyF9rL H1 {
  text-align: center;
  color: #000000;
}
.cid-uhmnFAOZ3J {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
@media (min-width: 768px) {
  .cid-uhmnFAOZ3J {
    align-items: center;
  }
  .cid-uhmnFAOZ3J .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhmnFAOZ3J .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhmnFAOZ3J {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhmnFAOZ3J .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhmnFAOZ3J .content-wrap {
    width: 100%;
  }
}
.cid-uhmnFAOZ3J .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhmnFAOZ3J .mbr-text,
.cid-uhmnFAOZ3J .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhmnFBLndI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmnFBLndI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFBLndI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFBLndI .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhmnFBLndI .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFBLndI .container {
    padding: 0 22px;
  }
}
.cid-uhmnFBLndI .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmnFBLndI .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhmnFBLndI .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhmnFBLndI .image-wrapper img {
    height: 350px;
  }
}
.cid-uhmnFBLndI .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhmnFBLndI .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhmnFBLndI .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhmnFBLndI .panel-group .card:hover,
.cid-uhmnFBLndI .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhmnFBLndI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmnFBLndI .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhmnFBLndI .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmnFBLndI .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: #000000;
  margin-left: 16px;
}
.cid-uhmnFBLndI .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhmnFBLndI .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhmnFBLndI .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhmnFBLndI .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhmnFBLndI .panel-title-edit {
  color: #000000;
}
.cid-uhmnFBLndI .panel-text {
  color: #8a8588;
}
.cid-uhmnFD9rLO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmnFD9rLO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFD9rLO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFD9rLO .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmnFD9rLO .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhmnFD9rLO .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhmnFD9rLO .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhmnFD9rLO .image-wrapper {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .image-wrapper {
    padding-right: 0;
  }
}
.cid-uhmnFD9rLO .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhmnFD9rLO .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhmnFD9rLO .mbr-section-title {
  color: #000000;
}
.cid-uhmnFD9rLO .mbr-desc {
  color: #000000;
}
.cid-uhmnFD9rLO .mbr-text {
  color: #000000;
}
.cid-uhmnFE3yls {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmnFE3yls .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFE3yls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFE3yls .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .container {
    padding: 0 30px;
  }
}
.cid-uhmnFE3yls .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmnFE3yls .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e9ea88;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmnFE3yls .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmnFE3yls .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmnFE3yls .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmnFE3yls .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmnFE3yls .mbr-section-title {
  color: #ffffff;
}
.cid-uhmnFE3yls .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmnFE3yls .mbr-text {
  color: #000000;
}
.cid-uhmnFE3yls .mbr-number {
  color: #FE5115;
}
.cid-uhmqcEnVw6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmqcEnVw6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmqcEnVw6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmqcEnVw6 .row {
  justify-content: space-between;
}
.cid-uhmqcEnVw6 .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmqcEnVw6 .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhmqcEnVw6 .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card:hover::before,
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhmqcEnVw6 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhmqcEnVw6 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmqcEnVw6 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uhmqcEnVw6 .panel-title-edit {
  color: #000000;
}
.cid-uhmqcEnVw6 .list {
  color: #000000;
}
.cid-uhmnFEZCcT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhmnFEZCcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFEZCcT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFEZCcT .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhmnFEZCcT .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhmnFEZCcT .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-uhmnFEZCcT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhmnFEZCcT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhmnFEZCcT .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhmnFEZCcT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhmnFFRwJ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmnFFRwJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmnFFRwJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmnFFRwJ0 .row {
  justify-content: space-between;
}
.cid-uhmnFFRwJ0 .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmnFFRwJ0 .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFFRwJ0 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmnFFRwJ0 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmnFFRwJ0 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmnFFRwJ0 .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmnFFRwJ0 .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFFRwJ0 .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmnFFRwJ0 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmnFFRwJ0 .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmnFFRwJ0 .list-wrapper .list .item-wrap:hover,
.cid-uhmnFFRwJ0 .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmnFFRwJ0 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmnFFRwJ0 .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmnFFRwJ0 .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmnFFRwJ0 .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmnFFRwJ0 .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmnFFRwJ0 .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmnFFRwJ0 .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmnFFRwJ0 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmnFFRwJ0 .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmnFFRwJ0 .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmnFFRwJ0 .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmnFFRwJ0 .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmnFFRwJ0 .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmnFFRwJ0 .mbr-section-title {
  color: #000000;
}
.cid-uhmnFFRwJ0 .mbr-text {
  color: #000000;
}
.cid-uhmnFFRwJ0 .list {
  color: #000000;
}
.cid-uhmnFFRwJ0 .mbr-desc {
  color: #000000;
}
.cid-uhmnFFRwJ0 .mbr-copy {
  color: #000000;
}
.cid-uhmnFFRwJ0 .mbr-desc,
.cid-uhmnFFRwJ0 .social-wrapper {
  text-align: center;
}
.cid-uhmnFFRwJ0 .mbr-copy,
.cid-uhmnFFRwJ0 .mbr-section-btn-main {
  text-align: center;
}
.cid-uhmskMKuAg .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhmskMKuAg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhmskMKuAg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .menu_box .navbar.opened,
  .cid-uhmskMKuAg .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhmskMKuAg .navbar-dropdown {
  position: relative !important;
}
.cid-uhmskMKuAg .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhmskMKuAg .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhmskMKuAg .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhmskMKuAg .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhmskMKuAg .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhmskMKuAg .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhmskMKuAg .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhmskMKuAg .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhmskMKuAg .offcanvas-body .mbr-text,
  .cid-uhmskMKuAg .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhmskMKuAg .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhmskMKuAg .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhmskMKuAg ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhmskMKuAg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmskMKuAg .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-uhmskMKuAg .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhmskMKuAg li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhmskMKuAg .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhmskMKuAg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhmskMKuAg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .nav-item {
    margin: 0 !important;
  }
}
.cid-uhmskMKuAg .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhmskMKuAg .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhmskMKuAg .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhmskMKuAg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhmskMKuAg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhmskMKuAg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmskMKuAg .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-uhmskMKuAg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhmskMKuAg .offcanvas_box {
    display: none;
  }
}
.cid-uhmskMKuAg .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhmskMKuAg .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhmskMKuAg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhmskMKuAg .container {
  display: flex;
  margin: auto;
}
.cid-uhmskMKuAg .iconfont-wrapper {
  color: #000000;
  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-uhmskMKuAg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhmskMKuAg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhmskMKuAg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhmskMKuAg .navbar-nav {
    margin: 0;
  }
}
.cid-uhmskMKuAg .dropdown-menu,
.cid-uhmskMKuAg .navbar.opened {
  background-color: false !important;
}
.cid-uhmskMKuAg .nav-item:focus,
.cid-uhmskMKuAg .nav-link:focus {
  outline: none;
}
.cid-uhmskMKuAg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhmskMKuAg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhmskMKuAg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhmskMKuAg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhmskMKuAg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhmskMKuAg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhmskMKuAg .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhmskMKuAg .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhmskMKuAg .navbar.opened {
  transition: all 0.3s;
}
.cid-uhmskMKuAg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhmskMKuAg .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhmskMKuAg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhmskMKuAg .navbar.collapsed {
  justify-content: center;
}
.cid-uhmskMKuAg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhmskMKuAg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhmskMKuAg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhmskMKuAg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhmskMKuAg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhmskMKuAg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhmskMKuAg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhmskMKuAg .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhmskMKuAg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhmskMKuAg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhmskMKuAg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhmskMKuAg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhmskMKuAg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhmskMKuAg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhmskMKuAg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhmskMKuAg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhmskMKuAg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhmskMKuAg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhmskMKuAg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhmskMKuAg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhmskMKuAg .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhmskMKuAg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhmskMKuAg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhmskMKuAg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhmskMKuAg .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-uhmskMKuAg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhmskMKuAg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhmskMKuAg .dropdown-item.active,
.cid-uhmskMKuAg .dropdown-item:active {
  background-color: transparent;
}
.cid-uhmskMKuAg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhmskMKuAg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhmskMKuAg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhmskMKuAg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhmskMKuAg ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhmskMKuAg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhmskMKuAg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhmskMKuAg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhmskMKuAg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhmskMKuAg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmskMKuAg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmskMKuAg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhmskMKuAg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmskMKuAg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhmskMKuAg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhmskMKuAg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmskMKuAg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhmskMKuAg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhmskMKuAg .navbar {
    height: 70px;
  }
  .cid-uhmskMKuAg .navbar.opened {
    height: auto;
  }
  .cid-uhmskMKuAg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhmskMKuAg .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhmskMKuAg .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhmskMKuAg .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhmskMKuAg .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhmskMKuAg .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhmskMKuAg .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhmskMKuAg .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhmskMKuAg .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhmskMKuAg .text_widget {
  margin-bottom: 32px;
}
.cid-uhmskMKuAg .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhmskMKuAg .text_widget a:hover {
  opacity: .5;
}
.cid-uhmskMKuAg .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhmskMKuAg .navbar-caption {
  color: #000000;
}
.cid-uhmskMKuAg .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhmskMKuAg .mbr-section-subtitle,
.cid-uhmskMKuAg .text_widget,
.cid-uhmskMKuAg .mbr-section-btn {
  text-align: left;
}
.cid-uhmskMKuAg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmskPw9T9 {
  background-image: url("../../../assets/images/bounce-house-rentals23-1920x1080.jpg");
}
.cid-uhmskPw9T9 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhmskPw9T9 .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhmskPw9T9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskPw9T9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskR3kUp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmskR3kUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskR3kUp .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-uhmskR3kUp .container {
    padding: 0 30px;
  }
}
.cid-uhmskR3kUp .row {
  justify-content: center;
}
.cid-uhmskR3kUp .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmskR3kUp .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhmskR3kUp .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmskR3kUp .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhmskR3kUp .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhmskR3kUp .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhmskR3kUp .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmskR3kUp .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhmskR3kUp .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhmskR3kUp .mbr-text {
  color: #144031;
}
.cid-uhmskROZPV {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhmskROZPV .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhmskROZPV h4,
.cid-uhmskROZPV h5 {
  text-align: center;
}
.cid-uhmskROZPV p {
  text-align: center;
}
.cid-uhmskROZPV .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhmskROZPV .card-img {
  font-size: 3rem;
}
.cid-uhmskROZPV .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhmskROZPV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskROZPV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskROZPV .mbr-text {
  color: #000000;
}
.cid-uhmskSXscH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
.cid-uhmskSXscH h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhmskSXscH .mbr-section-subtitle {
  color: #767676;
}
.cid-uhmskSXscH .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhmskSXscH .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhmskSXscH H2 {
  color: #ffffff;
}
.cid-uhmskSXscH .mbr-text-left {
  color: #000000;
  text-align: left;
}
.cid-uhmskSXscH .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-uhmskTCLCp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhmskTCLCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskTCLCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskTCLCp .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .container {
    padding: 0 30px;
  }
}
.cid-uhmskTCLCp .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-uhmskTCLCp .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .image-wrapper img {
    height: 300px;
  }
}
.cid-uhmskTCLCp .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .text-wrapper {
    margin: 0;
  }
}
.cid-uhmskTCLCp .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmskTCLCp .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmskTCLCp .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uhmskTCLCp .mbr-section-title {
  color: #ffffff;
}
.cid-uhmskTCLCp .mbr-text {
  color: #000000;
}
.cid-uhmskTCLCp .mbr-section-title,
.cid-uhmskTCLCp .mbr-section-btn {
  color: #000000;
}
.cid-uhmskUs0ll {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmskUs0ll .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskUs0ll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskUs0ll .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .container {
    padding: 0 30px;
  }
}
.cid-uhmskUs0ll .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmskUs0ll .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmskUs0ll .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmskUs0ll .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmskUs0ll .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmskUs0ll .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmskUs0ll .mbr-section-title {
  color: #ffffff;
}
.cid-uhmskUs0ll .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmskUs0ll .mbr-text {
  color: #000000;
}
.cid-uhmskUs0ll .mbr-number {
  color: #FE5115;
}
.cid-uhmskVcULS {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhmskVcULS .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmskVcULS .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhmskVcULS h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhmskVcULS p {
  color: #464646;
}
.cid-uhmskVcULS h2 {
  color: #000000;
}
.cid-uhmskVcULS .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uhmskVcULS .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhmskVcULS .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uhmskVcULS .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhmskVcULS .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmskVcULS .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uhmskVcULS .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uhmskVcULS .mbr-text {
    text-align: center;
  }
}
.cid-uhmskVcULS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskVcULS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskVcULS .mbr-section-title,
.cid-uhmskVcULS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhmskVcULS .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhmskVYmOH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmskVYmOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskVYmOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskVYmOH .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmskVYmOH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhmskVYmOH .container {
    padding: 0 16px;
  }
}
.cid-uhmskVYmOH .card {
  justify-content: center;
}
.cid-uhmskVYmOH .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: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhmskVYmOH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhmskVYmOH .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhmskVYmOH .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhmskVYmOH .mbr-section-title {
  color: #000000;
}
.cid-uhmskVYmOH .mbr-text {
  color: #000000;
}
.cid-uhmskVYmOH .mbr-desc {
  color: #000000;
}
.cid-uhmskVYmOH .mbr-section-title,
.cid-uhmskVYmOH .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uhmskWJPKQ {
  background-color: #ffffff;
}
.cid-uhmskWJPKQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmskWJPKQ .mbr-section-text {
  word-break: break-word;
}
.cid-uhmskWJPKQ .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhmskWJPKQ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmskWJPKQ .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhmskWJPKQ .mbr-text {
    text-align: center;
  }
}
.cid-uhmskWJPKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmskWJPKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmskWJPKQ H1 {
  text-align: center;
  color: #000000;
}
.cid-uhmskZLrvy {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
@media (min-width: 768px) {
  .cid-uhmskZLrvy {
    align-items: center;
  }
  .cid-uhmskZLrvy .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhmskZLrvy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhmskZLrvy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhmskZLrvy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhmskZLrvy .content-wrap {
    width: 100%;
  }
}
.cid-uhmskZLrvy .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhmskZLrvy .mbr-text,
.cid-uhmskZLrvy .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhmsl4iTkU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmsl4iTkU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmsl4iTkU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmsl4iTkU .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhmsl4iTkU .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhmsl4iTkU .container {
    padding: 0 22px;
  }
}
.cid-uhmsl4iTkU .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmsl4iTkU .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhmsl4iTkU .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhmsl4iTkU .image-wrapper img {
    height: 350px;
  }
}
.cid-uhmsl4iTkU .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhmsl4iTkU .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhmsl4iTkU .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhmsl4iTkU .panel-group .card:hover,
.cid-uhmsl4iTkU .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhmsl4iTkU .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmsl4iTkU .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhmsl4iTkU .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmsl4iTkU .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: #000000;
  margin-left: 16px;
}
.cid-uhmsl4iTkU .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhmsl4iTkU .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhmsl4iTkU .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhmsl4iTkU .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhmsl4iTkU .panel-title-edit {
  color: #000000;
}
.cid-uhmsl4iTkU .panel-text {
  color: #8a8588;
}
.cid-uhmslaMcXC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmslaMcXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmslaMcXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmslaMcXC .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmslaMcXC .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhmslaMcXC .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhmslaMcXC .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhmslaMcXC .image-wrapper {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .image-wrapper {
    padding-right: 0;
  }
}
.cid-uhmslaMcXC .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhmslaMcXC .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhmslaMcXC .mbr-section-title {
  color: #000000;
}
.cid-uhmslaMcXC .mbr-desc {
  color: #000000;
}
.cid-uhmslaMcXC .mbr-text {
  color: #000000;
}
.cid-uhmslcqo0n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmslcqo0n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmslcqo0n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmslcqo0n .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .container {
    padding: 0 30px;
  }
}
.cid-uhmslcqo0n .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmslcqo0n .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e9ea88;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmslcqo0n .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmslcqo0n .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmslcqo0n .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmslcqo0n .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmslcqo0n .mbr-section-title {
  color: #ffffff;
}
.cid-uhmslcqo0n .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmslcqo0n .mbr-text {
  color: #000000;
}
.cid-uhmslcqo0n .mbr-number {
  color: #FE5115;
}
.cid-uhmsldCom7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmsldCom7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmsldCom7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmsldCom7 .row {
  justify-content: space-between;
}
.cid-uhmsldCom7 .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmsldCom7 .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhmsldCom7 .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card:hover::before,
.cid-uhmsldCom7 .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhmsldCom7 .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhmsldCom7 .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmsldCom7 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uhmsldCom7 .panel-title-edit {
  color: #000000;
}
.cid-uhmsldCom7 .list {
  color: #000000;
}
.cid-uhmsleQldW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhmsleQldW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmsleQldW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmsleQldW .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhmsleQldW .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhmsleQldW .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-uhmsleQldW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhmsleQldW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhmsleQldW .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhmsleQldW .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhmslgnI0f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmslgnI0f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmslgnI0f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmslgnI0f .row {
  justify-content: space-between;
}
.cid-uhmslgnI0f .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmslgnI0f .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmslgnI0f .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmslgnI0f .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmslgnI0f .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmslgnI0f .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmslgnI0f .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmslgnI0f .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmslgnI0f .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmslgnI0f .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmslgnI0f .list-wrapper .list .item-wrap:hover,
.cid-uhmslgnI0f .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmslgnI0f .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmslgnI0f .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmslgnI0f .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmslgnI0f .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmslgnI0f .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmslgnI0f .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmslgnI0f .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmslgnI0f .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmslgnI0f .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmslgnI0f .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmslgnI0f .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmslgnI0f .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmslgnI0f .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmslgnI0f .mbr-section-title {
  color: #000000;
}
.cid-uhmslgnI0f .mbr-text {
  color: #000000;
}
.cid-uhmslgnI0f .list {
  color: #000000;
}
.cid-uhmslgnI0f .mbr-desc {
  color: #000000;
}
.cid-uhmslgnI0f .mbr-copy {
  color: #000000;
}
.cid-uhmslgnI0f .mbr-desc,
.cid-uhmslgnI0f .social-wrapper {
  text-align: center;
}
.cid-uhmslgnI0f .mbr-copy,
.cid-uhmslgnI0f .mbr-section-btn-main {
  text-align: center;
}
.cid-uhmB1mxN5M .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhmB1mxN5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhmB1mxN5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .menu_box .navbar.opened,
  .cid-uhmB1mxN5M .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhmB1mxN5M .navbar-dropdown {
  position: relative !important;
}
.cid-uhmB1mxN5M .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhmB1mxN5M .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhmB1mxN5M .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhmB1mxN5M .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f4f5f7;
  }
  .cid-uhmB1mxN5M .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhmB1mxN5M .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhmB1mxN5M .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhmB1mxN5M .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhmB1mxN5M .offcanvas-body .mbr-text,
  .cid-uhmB1mxN5M .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uhmB1mxN5M .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhmB1mxN5M .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhmB1mxN5M ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhmB1mxN5M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmB1mxN5M .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-uhmB1mxN5M .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhmB1mxN5M li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhmB1mxN5M .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhmB1mxN5M .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhmB1mxN5M .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .nav-item {
    margin: 0 !important;
  }
}
.cid-uhmB1mxN5M .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-uhmB1mxN5M .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 45%;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #7237a2;
  transition: all 0.3s ease-out;
}
.cid-uhmB1mxN5M .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-uhmB1mxN5M .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhmB1mxN5M .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhmB1mxN5M .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhmB1mxN5M .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-uhmB1mxN5M .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhmB1mxN5M .offcanvas_box {
    display: none;
  }
}
.cid-uhmB1mxN5M .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uhmB1mxN5M .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhmB1mxN5M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhmB1mxN5M .container {
  display: flex;
  margin: auto;
}
.cid-uhmB1mxN5M .iconfont-wrapper {
  color: #000000;
  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-uhmB1mxN5M .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhmB1mxN5M .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhmB1mxN5M .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhmB1mxN5M .navbar-nav {
    margin: 0;
  }
}
.cid-uhmB1mxN5M .dropdown-menu,
.cid-uhmB1mxN5M .navbar.opened {
  background-color: false !important;
}
.cid-uhmB1mxN5M .nav-item:focus,
.cid-uhmB1mxN5M .nav-link:focus {
  outline: none;
}
.cid-uhmB1mxN5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhmB1mxN5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhmB1mxN5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhmB1mxN5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhmB1mxN5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhmB1mxN5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhmB1mxN5M .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uhmB1mxN5M .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uhmB1mxN5M .navbar.opened {
  transition: all 0.3s;
}
.cid-uhmB1mxN5M .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhmB1mxN5M .navbar .navbar-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}
.cid-uhmB1mxN5M .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhmB1mxN5M .navbar.collapsed {
  justify-content: center;
}
.cid-uhmB1mxN5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhmB1mxN5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhmB1mxN5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhmB1mxN5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhmB1mxN5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhmB1mxN5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhmB1mxN5M .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhmB1mxN5M .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhmB1mxN5M .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhmB1mxN5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhmB1mxN5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhmB1mxN5M .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhmB1mxN5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhmB1mxN5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhmB1mxN5M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhmB1mxN5M .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhmB1mxN5M .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhmB1mxN5M .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhmB1mxN5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhmB1mxN5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhmB1mxN5M .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhmB1mxN5M .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhmB1mxN5M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhmB1mxN5M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhmB1mxN5M .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-uhmB1mxN5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600;
}
.cid-uhmB1mxN5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhmB1mxN5M .dropdown-item.active,
.cid-uhmB1mxN5M .dropdown-item:active {
  background-color: transparent;
}
.cid-uhmB1mxN5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhmB1mxN5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhmB1mxN5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhmB1mxN5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhmB1mxN5M ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uhmB1mxN5M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhmB1mxN5M button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #c8d814;
}
.cid-uhmB1mxN5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhmB1mxN5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhmB1mxN5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmB1mxN5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhmB1mxN5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhmB1mxN5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmB1mxN5M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhmB1mxN5M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhmB1mxN5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhmB1mxN5M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhmB1mxN5M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhmB1mxN5M .navbar {
    height: 70px;
  }
  .cid-uhmB1mxN5M .navbar.opened {
    height: auto;
  }
  .cid-uhmB1mxN5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhmB1mxN5M .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uhmB1mxN5M .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-uhmB1mxN5M .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uhmB1mxN5M .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhmB1mxN5M .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uhmB1mxN5M .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uhmB1mxN5M .navbar-caption:hover {
  color: #f27d7a;
}
@media (min-width: 992px) {
  .cid-uhmB1mxN5M .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhmB1mxN5M .text_widget {
  margin-bottom: 32px;
}
.cid-uhmB1mxN5M .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uhmB1mxN5M .text_widget a:hover {
  opacity: .5;
}
.cid-uhmB1mxN5M .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhmB1mxN5M .navbar-caption {
  color: #000000;
}
.cid-uhmB1mxN5M .mbr-text {
  color: #6a6e71;
  text-align: left;
}
.cid-uhmB1mxN5M .mbr-section-subtitle,
.cid-uhmB1mxN5M .text_widget,
.cid-uhmB1mxN5M .mbr-section-btn {
  text-align: left;
}
.cid-uhmB1mxN5M a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhmB1qFHZ6 {
  background-image: url("../../../assets/images/bounce-house-rentals26-1920x1080.jpg");
}
.cid-uhmB1qFHZ6 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhmB1qFHZ6 .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uhmB1qFHZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1qFHZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1s0WhY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1s0WhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1s0WhY .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-uhmB1s0WhY .container {
    padding: 0 30px;
  }
}
.cid-uhmB1s0WhY .row {
  justify-content: center;
}
.cid-uhmB1s0WhY .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1s0WhY .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhmB1s0WhY .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1s0WhY .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhmB1s0WhY .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhmB1s0WhY .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhmB1s0WhY .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmB1s0WhY .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhmB1s0WhY .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-uhmB1s0WhY .mbr-text {
  color: #144031;
}
.cid-uhmB1tGPJm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhmB1tGPJm .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhmB1tGPJm h4,
.cid-uhmB1tGPJm h5 {
  text-align: center;
}
.cid-uhmB1tGPJm p {
  text-align: center;
}
.cid-uhmB1tGPJm .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhmB1tGPJm .card-img {
  font-size: 3rem;
}
.cid-uhmB1tGPJm .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhmB1tGPJm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1tGPJm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1tGPJm .mbr-text {
  color: #000000;
}
.cid-uhmB1v10Wb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
.cid-uhmB1v10Wb h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhmB1v10Wb .mbr-section-subtitle {
  color: #767676;
}
.cid-uhmB1v10Wb .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-uhmB1v10Wb .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-uhmB1v10Wb H2 {
  color: #ffffff;
}
.cid-uhmB1v10Wb .mbr-text-left {
  color: #000000;
  text-align: left;
}
.cid-uhmB1v10Wb .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-uhmB1w88fF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhmB1w88fF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1w88fF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1w88fF .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .container {
    padding: 0 30px;
  }
}
.cid-uhmB1w88fF .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-uhmB1w88fF .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .image-wrapper img {
    height: 300px;
  }
}
.cid-uhmB1w88fF .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .text-wrapper {
    margin: 0;
  }
}
.cid-uhmB1w88fF .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmB1w88fF .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmB1w88fF .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uhmB1w88fF .mbr-section-title {
  color: #ffffff;
}
.cid-uhmB1w88fF .mbr-text {
  color: #000000;
}
.cid-uhmB1w88fF .mbr-section-title,
.cid-uhmB1w88fF .mbr-section-btn {
  color: #000000;
}
.cid-uhmB1x2Nxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1x2Nxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1x2Nxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1x2Nxq .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .container {
    padding: 0 30px;
  }
}
.cid-uhmB1x2Nxq .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmB1x2Nxq .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmB1x2Nxq .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmB1x2Nxq .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmB1x2Nxq .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmB1x2Nxq .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmB1x2Nxq .mbr-section-title {
  color: #ffffff;
}
.cid-uhmB1x2Nxq .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmB1x2Nxq .mbr-text {
  color: #000000;
}
.cid-uhmB1x2Nxq .mbr-number {
  color: #FE5115;
}
.cid-uhmB1y5KWd {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhmB1y5KWd .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmB1y5KWd .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhmB1y5KWd h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhmB1y5KWd p {
  color: #464646;
}
.cid-uhmB1y5KWd h2 {
  color: #000000;
}
.cid-uhmB1y5KWd .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uhmB1y5KWd .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhmB1y5KWd .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uhmB1y5KWd .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhmB1y5KWd .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmB1y5KWd .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uhmB1y5KWd .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uhmB1y5KWd .mbr-text {
    text-align: center;
  }
}
.cid-uhmB1y5KWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1y5KWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1y5KWd .mbr-section-title,
.cid-uhmB1y5KWd .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhmB1y5KWd .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhmB1z2HUv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1z2HUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1z2HUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1z2HUv .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1z2HUv .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1z2HUv .container {
    padding: 0 16px;
  }
}
.cid-uhmB1z2HUv .card {
  justify-content: center;
}
.cid-uhmB1z2HUv .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: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhmB1z2HUv .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhmB1z2HUv .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uhmB1z2HUv .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uhmB1z2HUv .mbr-section-title {
  color: #000000;
}
.cid-uhmB1z2HUv .mbr-text {
  color: #000000;
}
.cid-uhmB1z2HUv .mbr-desc {
  color: #000000;
}
.cid-uhmB1z2HUv .mbr-section-title,
.cid-uhmB1z2HUv .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uhmB1Acubw {
  background-color: #ffffff;
}
.cid-uhmB1Acubw .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmB1Acubw .mbr-section-text {
  word-break: break-word;
}
.cid-uhmB1Acubw .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhmB1Acubw .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmB1Acubw .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhmB1Acubw .mbr-text {
    text-align: center;
  }
}
.cid-uhmB1Acubw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1Acubw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1Acubw H1 {
  text-align: center;
  color: #000000;
}
.cid-uhmB1BodvR {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9ea88;
}
@media (min-width: 768px) {
  .cid-uhmB1BodvR {
    align-items: center;
  }
  .cid-uhmB1BodvR .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhmB1BodvR .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhmB1BodvR {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhmB1BodvR .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhmB1BodvR .content-wrap {
    width: 100%;
  }
}
.cid-uhmB1BodvR .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhmB1BodvR .mbr-text,
.cid-uhmB1BodvR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhmB1CqHpT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmB1CqHpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1CqHpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1CqHpT .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhmB1CqHpT .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1CqHpT .container {
    padding: 0 22px;
  }
}
.cid-uhmB1CqHpT .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmB1CqHpT .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhmB1CqHpT .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhmB1CqHpT .image-wrapper img {
    height: 350px;
  }
}
.cid-uhmB1CqHpT .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhmB1CqHpT .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhmB1CqHpT .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhmB1CqHpT .panel-group .card:hover,
.cid-uhmB1CqHpT .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhmB1CqHpT .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmB1CqHpT .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhmB1CqHpT .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmB1CqHpT .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: #000000;
  margin-left: 16px;
}
.cid-uhmB1CqHpT .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhmB1CqHpT .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhmB1CqHpT .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhmB1CqHpT .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhmB1CqHpT .panel-title-edit {
  color: #000000;
}
.cid-uhmB1CqHpT .panel-text {
  color: #8a8588;
}
.cid-uhmB1ExRd1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1ExRd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1ExRd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1ExRd1 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmB1ExRd1 .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-uhmB1ExRd1 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhmB1ExRd1 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uhmB1ExRd1 .image-wrapper {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .image-wrapper {
    padding-right: 0;
  }
}
.cid-uhmB1ExRd1 .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-uhmB1ExRd1 .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-uhmB1ExRd1 .mbr-section-title {
  color: #000000;
}
.cid-uhmB1ExRd1 .mbr-desc {
  color: #000000;
}
.cid-uhmB1ExRd1 .mbr-text {
  color: #000000;
}
.cid-uhmB1FZYy0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmB1FZYy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1FZYy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1FZYy0 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .container {
    padding: 0 30px;
  }
}
.cid-uhmB1FZYy0 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmB1FZYy0 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #e9ea88;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmB1FZYy0 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmB1FZYy0 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmB1FZYy0 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmB1FZYy0 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmB1FZYy0 .mbr-section-title {
  color: #ffffff;
}
.cid-uhmB1FZYy0 .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmB1FZYy0 .mbr-text {
  color: #000000;
}
.cid-uhmB1FZYy0 .mbr-number {
  color: #FE5115;
}
.cid-uhmB1HxnRN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1HxnRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1HxnRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1HxnRN .row {
  justify-content: space-between;
}
.cid-uhmB1HxnRN .content-wrapper .mbr-desc {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmB1HxnRN .content-wrapper .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uhmB1HxnRN .content-wrapper .panel-group .card {
    padding: 25px 0;
  }
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card:hover::before,
.cid-uhmB1HxnRN .content-wrapper .panel-group .card:focus::before {
  width: 100%;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #000000;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  font-weight: 700 !important;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 25px;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
  padding: 0;
  margin: 0 0 0 50%;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uhmB1HxnRN .content-wrapper .panel-group .card .panel-collapse .panel-body .list {
    margin: 0;
  }
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uhmB1HxnRN .content-wrapper .panel-group .card .panel-collapse .panel-body .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmB1HxnRN .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uhmB1HxnRN .panel-title-edit {
  color: #000000;
}
.cid-uhmB1HxnRN .list {
  color: #000000;
}
.cid-uhmB1ID8FC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhmB1ID8FC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1ID8FC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1ID8FC .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhmB1ID8FC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhmB1ID8FC .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-uhmB1ID8FC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhmB1ID8FC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhmB1ID8FC .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhmB1ID8FC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhmB1JCPal {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ea88;
}
.cid-uhmB1JCPal .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmB1JCPal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmB1JCPal .row {
  justify-content: space-between;
}
.cid-uhmB1JCPal .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmB1JCPal .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1JCPal .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmB1JCPal .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhmB1JCPal .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uhmB1JCPal .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmB1JCPal .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1JCPal .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uhmB1JCPal .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uhmB1JCPal .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uhmB1JCPal .list-wrapper .list .item-wrap:hover,
.cid-uhmB1JCPal .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uhmB1JCPal .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhmB1JCPal .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uhmB1JCPal .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uhmB1JCPal .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uhmB1JCPal .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uhmB1JCPal .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uhmB1JCPal .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhmB1JCPal .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhmB1JCPal .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uhmB1JCPal .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uhmB1JCPal .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmB1JCPal .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uhmB1JCPal .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uhmB1JCPal .mbr-section-title {
  color: #000000;
}
.cid-uhmB1JCPal .mbr-text {
  color: #000000;
}
.cid-uhmB1JCPal .list {
  color: #000000;
}
.cid-uhmB1JCPal .mbr-desc {
  color: #000000;
}
.cid-uhmB1JCPal .mbr-copy {
  color: #000000;
}
.cid-uhmB1JCPal .mbr-desc,
.cid-uhmB1JCPal .social-wrapper {
  text-align: center;
}
.cid-uhmB1JCPal .mbr-copy,
.cid-uhmB1JCPal .mbr-section-btn-main {
  text-align: center;
}
