body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.625rem 0.874rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.3125rem 2.5rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #f2148d !important;
}
.bg-success {
  background-color: #1e7c3a !important;
}
.bg-info {
  background-color: #74a3c7 !important;
}
.bg-warning {
  background-color: #ffd785 !important;
}
.bg-danger {
  background-color: #ff9685 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f2148d !important;
  border-color: #f2148d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c80b72 !important;
  border-color: #c80b72 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c80b72 !important;
  border-color: #c80b72 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a25dae !important;
  border-color: #a25dae !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #854890 !important;
  border-color: #854890 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #854890 !important;
  border-color: #854890 !important;
}
.btn-info,
.btn-info:active {
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #508bb8 !important;
  border-color: #508bb8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #508bb8 !important;
  border-color: #508bb8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
  color: #855900 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #523700 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #855900 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9685 !important;
  border-color: #ff9685 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff6a52 !important;
  border-color: #ff6a52 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6a52 !important;
  border-color: #ff6a52 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white:hover {
  color: #fafafa !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black {
  color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black:hover {
  color: #333333 !important;
}
.btn-black:hover,
.btn-black:hover:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover:hover,
.btn-black:hover:focus,
.btn-black:hover.focus,
.btn-black:hover.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover.disabled,
.btn-black:hover:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2148d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c80b72 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2148d !important;
  border-color: #f2148d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a25dae;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #854890 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #a25dae !important;
  border-color: #a25dae !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #74a3c7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #508bb8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e7c3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145327 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd785;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffc652 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #855900 !important;
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9685;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff6a52 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9685 !important;
  border-color: #ff9685 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #fafafa;
  background-color: transparent;
  border-color: transparent;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: transparent;
  border-color: transparent;
}
.text-primary {
  color: #f2148d !important;
}
.text-secondary {
  color: #a25dae !important;
}
.text-success {
  color: #1e7c3a !important;
}
.text-info {
  color: #74a3c7 !important;
}
.text-warning {
  color: #ffd785 !important;
}
.text-danger {
  color: #ff9685 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #333333 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c80b72 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #854890 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #145327 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #508bb8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffc652 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff6a52 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #e1e1e1 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #74a3c7;
}
.alert-warning {
  background-color: #ffd785;
}
.alert-danger {
  background-color: #ff9685;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f2148d;
  border-color: #f2148d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f2148d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd5eb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #47d271;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cfdfec;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #f2148d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f2148d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f2148d;
  border-bottom-color: #f2148d;
}
.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: #f2148d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #a25dae !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f2148d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uUryF9dRdZ {
  background-color: transparent;
}
.cid-uUryF9dRdZ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUryF9dRdZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUryF9dRdZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUryF9dRdZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUryF9dRdZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUryF9dRdZ .menu_box .navbar.opened,
  .cid-uUryF9dRdZ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUryF9dRdZ .navbar-dropdown {
  position: relative !important;
}
.cid-uUryF9dRdZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUryF9dRdZ .btn:hover {
  box-shadow: none;
}
.cid-uUryF9dRdZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUryF9dRdZ .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUryF9dRdZ .nav-item {
    margin: 0 !important;
  }
}
.cid-uUryF9dRdZ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUryF9dRdZ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUryF9dRdZ .nav-item .nav-link:hover::before,
.cid-uUryF9dRdZ .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUryF9dRdZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUryF9dRdZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUryF9dRdZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUryF9dRdZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUryF9dRdZ .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-uUryF9dRdZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUryF9dRdZ .offcanvas_box {
    display: none;
  }
}
.cid-uUryF9dRdZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUryF9dRdZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUryF9dRdZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUryF9dRdZ .container {
  display: flex;
  margin: auto;
}
.cid-uUryF9dRdZ .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-uUryF9dRdZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUryF9dRdZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUryF9dRdZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUryF9dRdZ .navbar-nav {
    margin: 0;
  }
}
.cid-uUryF9dRdZ .dropdown-menu,
.cid-uUryF9dRdZ .navbar.opened {
  background-color: false !important;
}
.cid-uUryF9dRdZ .nav-item:focus,
.cid-uUryF9dRdZ .nav-link:focus {
  outline: none;
}
.cid-uUryF9dRdZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUryF9dRdZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUryF9dRdZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUryF9dRdZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUryF9dRdZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUryF9dRdZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUryF9dRdZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUryF9dRdZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUryF9dRdZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uUryF9dRdZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUryF9dRdZ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUryF9dRdZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUryF9dRdZ .navbar.collapsed {
  justify-content: center;
}
.cid-uUryF9dRdZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUryF9dRdZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUryF9dRdZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUryF9dRdZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUryF9dRdZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUryF9dRdZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUryF9dRdZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUryF9dRdZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUryF9dRdZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUryF9dRdZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUryF9dRdZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUryF9dRdZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUryF9dRdZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUryF9dRdZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUryF9dRdZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUryF9dRdZ .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUryF9dRdZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUryF9dRdZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUryF9dRdZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUryF9dRdZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUryF9dRdZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUryF9dRdZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUryF9dRdZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUryF9dRdZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUryF9dRdZ .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-uUryF9dRdZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUryF9dRdZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUryF9dRdZ .dropdown-item.active,
.cid-uUryF9dRdZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uUryF9dRdZ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUryF9dRdZ .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUryF9dRdZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUryF9dRdZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUryF9dRdZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUryF9dRdZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUryF9dRdZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUryF9dRdZ 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: #ff5753;
}
.cid-uUryF9dRdZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUryF9dRdZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUryF9dRdZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUryF9dRdZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUryF9dRdZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUryF9dRdZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUryF9dRdZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUryF9dRdZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUryF9dRdZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUryF9dRdZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUryF9dRdZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUryF9dRdZ .navbar {
    height: 70px;
  }
  .cid-uUryF9dRdZ .navbar.opened {
    height: auto;
  }
  .cid-uUryF9dRdZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUryF9dRdZ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUryF9dRdZ .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUryF9dRdZ .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUryF9dRdZ .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUryF9dRdZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUryF9dRdZ .text_widget {
  margin-bottom: 32px;
}
.cid-uUryF9dRdZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUryF9dRdZ .text_widget a:hover,
.cid-uUryF9dRdZ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUryF9dRdZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUryF9dRdZ .icons-menu-main {
  display: flex;
}
.cid-uUryF9dRdZ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUryF9dRdZ .navbar-caption {
  color: #000000;
}
.cid-uUryF9dRdZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUryF9dRdZ .mbr-section-subtitle,
.cid-uUryF9dRdZ .text_widget,
.cid-uUryF9dRdZ .mbr-section-btn {
  text-align: center;
}
.cid-uUryF9dRdZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUryFUapvo {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/screenshot-133.png-1277x797.png");
}
.cid-uUryFUapvo .row.heading {
  margin-bottom: 72px;
}
.cid-uUryFUapvo .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uUryFUapvo .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uUryFUapvo .card-box .card-title {
  color: #ffffff;
}
.cid-uUryFUapvo .card-box .mbr-text {
  color: #ffffff;
}
.cid-uUryFUapvo .card-box .link .btn {
  margin: 0;
}
.cid-uUryFUapvo .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uUryFUapvo .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-uUryFUapvo .card-title {
  margin: 0;
}
.cid-uUryFUapvo .card-img,
.cid-uUryFUapvo .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uUryFUapvo .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uUryFUapvo .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uUryFUapvo .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uUryFUapvo .card .card-box .card-title,
  .cid-uUryFUapvo .card .card-box .mbr-text,
  .cid-uUryFUapvo .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uUryFUapvo .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uUryFUapvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryFUapvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryIPAc1g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUryIPAc1g .card-wrapper {
  border-radius: 4px;
}
.cid-uUryIPAc1g .card-subtitle {
  color: #0095ff;
}
.cid-uUryIPAc1g .mbr-text,
.cid-uUryIPAc1g .card-subtitle {
  color: #232323;
}
.cid-uUryIPAc1g .mbr-iconfont {
  font-size: 90px;
  color: #f2148d;
}
.cid-uUryIPAc1g .icon {
  text-align: end;
}
@media (max-width: 768px) {
  .cid-uUryIPAc1g .icon {
    margin-bottom: 15px;
  }
  .cid-uUryIPAc1g * {
    text-align: center !important;
  }
}
.cid-uUryIPAc1g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryIPAc1g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryJEkpSa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/screenshot-134.png-1194x794.png");
}
.cid-uUryJEkpSa .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-uUryJEkpSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryJEkpSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryKxs2G5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUryKxs2G5 .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-uUryKxs2G5 .card-title {
  font-weight: 600;
}
.cid-uUryKxs2G5 .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-uUryKxs2G5 .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #f2148d;
  background-color: #ffffff;
  border: 2px solid #f2148d;
}
.cid-uUryKxs2G5 .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #f2148d;
}
.cid-uUryKxs2G5 .card-img .icon span {
  color: #f2148d;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-uUryKxs2G5 .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uUryKxs2G5 .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-uUryKxs2G5 .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-uUryKxs2G5 .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-uUryKxs2G5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryKxs2G5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryKTIMNt {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uUryKTIMNt .mbr-text,
.cid-uUryKTIMNt .mbr-section-btn {
  color: #333333;
}
.cid-uUryKTIMNt .mbr-section-title {
  color: #f2148d;
}
.cid-uUryKTIMNt .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uUryKTIMNt * {
    text-align: center;
  }
  .cid-uUryKTIMNt .buttons-wrap {
    justify-content: center;
  }
}
.cid-uUryKTIMNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryKTIMNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryTfhJmP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUryTfhJmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUryTfhJmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUryTfhJmP .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uUryTfhJmP .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uUryTfhJmP .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
.cid-uUryTfhJmP .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uUryTfhJmP .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uUryTfhJmP .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #f2148d;
  color: #ffffff;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #f2148d;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uUryTfhJmP .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uUryTfhJmP .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uUryTfhJmP .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUryTfhJmP .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uUryTfhJmP .mbr-label {
  color: #000000;
}
.cid-uUryTfhJmP .mbr-section-title {
  color: #000000;
}
.cid-uUryTfhJmP .panel-title-edit {
  color: #000000;
}
.cid-uUryTfhJmP .panel-text {
  color: #8a8a8a;
}
.cid-uUrzqwuHzo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrzqwuHzo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrzqwuHzo .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-uUrzqwuHzo .container {
    padding: 0 25px;
  }
}
.cid-uUrzqwuHzo .row {
  justify-content: center;
}
.cid-uUrzqwuHzo .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uUrzqwuHzo .image-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrzqwuHzo .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUrzqwuHzo .image-wrapper img {
    height: 350px;
  }
}
.cid-uUrzqwuHzo .form-wrapper {
  padding-left: 54px;
}
@media (max-width: 992px) {
  .cid-uUrzqwuHzo .form-wrapper {
    padding: 0 12px;
  }
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row {
  margin: 0;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 20px !important;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 20px !important;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-control {
  background-color: transparent;
  padding: 12px 0;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #e1e1e1 !important;
  border-radius: 0 !important;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #e1e1e1;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #e1e1e1 !important;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group textarea {
  min-height: 124px;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #e1e1e1;
  border-color: #e1e1e1;
}
.cid-uUrzqwuHzo .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uUrzqwuHzo .mbr-section-title {
  color: #000000;
}
.cid-uUrzqwuHzo .mbr-text {
  color: #000000;
}
.cid-uUrzqwuHzo label {
  color: #000000;
}
.cid-uUrzyzZz4A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrzyzZz4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrzyzZz4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrzyzZz4A .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uUrzyzZz4A .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrzyzZz4A .item {
    margin-bottom: 15px;
  }
}
.cid-uUrzyzZz4A .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #f2148d;
}
@media (max-width: 992px) {
  .cid-uUrzyzZz4A .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uUrzyzZz4A .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrzyzZz4A .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrzyzZz4A .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #f2148d;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uUrzyzZz4A .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uUrzyzZz4A .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uUrzyzZz4A .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uUrzyzZz4A .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUrzyzZz4A .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUrzyzZz4A .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uUrzyzZz4A .card-title {
  color: #000000;
}
.cid-uUrzyzZz4A .card-text {
  color: #8a8a8a;
}
.cid-uUrzztCuAe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uUrzztCuAe .google-map {
  height: 30rem;
  position: relative;
}
.cid-uUrzztCuAe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUrzztCuAe .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-uUrzztCuAe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUrzztCuAe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUrzztCuAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrzztCuAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrzBTYgjb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrzBTYgjb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrzBTYgjb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrzBTYgjb .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrzBTYgjb .row-copyright p {
  width: 100%;
}
.cid-uUrHOtEc7N {
  background-color: transparent;
}
.cid-uUrHOtEc7N .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUrHOtEc7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUrHOtEc7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUrHOtEc7N .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUrHOtEc7N .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUrHOtEc7N .menu_box .navbar.opened,
  .cid-uUrHOtEc7N .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUrHOtEc7N .navbar-dropdown {
  position: relative !important;
}
.cid-uUrHOtEc7N .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUrHOtEc7N .btn:hover {
  box-shadow: none;
}
.cid-uUrHOtEc7N .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUrHOtEc7N .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUrHOtEc7N .nav-item {
    margin: 0 !important;
  }
}
.cid-uUrHOtEc7N .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUrHOtEc7N .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUrHOtEc7N .nav-item .nav-link:hover::before,
.cid-uUrHOtEc7N .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUrHOtEc7N .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUrHOtEc7N .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUrHOtEc7N .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUrHOtEc7N .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUrHOtEc7N .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-uUrHOtEc7N .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUrHOtEc7N .offcanvas_box {
    display: none;
  }
}
.cid-uUrHOtEc7N .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUrHOtEc7N .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUrHOtEc7N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUrHOtEc7N .container {
  display: flex;
  margin: auto;
}
.cid-uUrHOtEc7N .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-uUrHOtEc7N .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUrHOtEc7N .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUrHOtEc7N .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUrHOtEc7N .navbar-nav {
    margin: 0;
  }
}
.cid-uUrHOtEc7N .dropdown-menu,
.cid-uUrHOtEc7N .navbar.opened {
  background-color: false !important;
}
.cid-uUrHOtEc7N .nav-item:focus,
.cid-uUrHOtEc7N .nav-link:focus {
  outline: none;
}
.cid-uUrHOtEc7N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUrHOtEc7N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUrHOtEc7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUrHOtEc7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUrHOtEc7N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUrHOtEc7N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUrHOtEc7N .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUrHOtEc7N .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUrHOtEc7N .navbar.opened {
  transition: all 0.3s;
}
.cid-uUrHOtEc7N .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUrHOtEc7N .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUrHOtEc7N .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUrHOtEc7N .navbar.collapsed {
  justify-content: center;
}
.cid-uUrHOtEc7N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUrHOtEc7N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUrHOtEc7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUrHOtEc7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUrHOtEc7N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUrHOtEc7N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUrHOtEc7N .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUrHOtEc7N .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUrHOtEc7N .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUrHOtEc7N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUrHOtEc7N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUrHOtEc7N .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUrHOtEc7N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUrHOtEc7N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUrHOtEc7N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUrHOtEc7N .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUrHOtEc7N .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUrHOtEc7N .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUrHOtEc7N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUrHOtEc7N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUrHOtEc7N .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUrHOtEc7N .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUrHOtEc7N .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUrHOtEc7N .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUrHOtEc7N .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-uUrHOtEc7N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUrHOtEc7N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUrHOtEc7N .dropdown-item.active,
.cid-uUrHOtEc7N .dropdown-item:active {
  background-color: transparent;
}
.cid-uUrHOtEc7N .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUrHOtEc7N .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUrHOtEc7N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUrHOtEc7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUrHOtEc7N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUrHOtEc7N ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUrHOtEc7N .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUrHOtEc7N 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: #ff5753;
}
.cid-uUrHOtEc7N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUrHOtEc7N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUrHOtEc7N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHOtEc7N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHOtEc7N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUrHOtEc7N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHOtEc7N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUrHOtEc7N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUrHOtEc7N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHOtEc7N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUrHOtEc7N .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUrHOtEc7N .navbar {
    height: 70px;
  }
  .cid-uUrHOtEc7N .navbar.opened {
    height: auto;
  }
  .cid-uUrHOtEc7N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUrHOtEc7N .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUrHOtEc7N .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUrHOtEc7N .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUrHOtEc7N .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUrHOtEc7N .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUrHOtEc7N .text_widget {
  margin-bottom: 32px;
}
.cid-uUrHOtEc7N .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUrHOtEc7N .text_widget a:hover,
.cid-uUrHOtEc7N .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUrHOtEc7N .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUrHOtEc7N .icons-menu-main {
  display: flex;
}
.cid-uUrHOtEc7N .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUrHOtEc7N .navbar-caption {
  color: #000000;
}
.cid-uUrHOtEc7N .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUrHOtEc7N .mbr-section-subtitle,
.cid-uUrHOtEc7N .text_widget,
.cid-uUrHOtEc7N .mbr-section-btn {
  text-align: center;
}
.cid-uUrHOtEc7N a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUrHOxK5Dd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uUrHOxK5Dd .row {
  row-gap: 40px;
}
.cid-uUrHOxK5Dd .mbr-section-head {
  padding-bottom: 50px;
}
.cid-uUrHOxK5Dd .mbr-section-title {
  color: #f2148d;
}
.cid-uUrHOxK5Dd .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-uUrHOxK5Dd .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uUrHOxK5Dd .item-img img {
  width: 100%;
  aspect-ratio: calc(37 / (11 * 3));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-uUrHOxK5Dd .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uUrHOxK5Dd .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-uUrHOxK5Dd .item-content {
  flex-grow: 1;
  padding: 31px 42px 43px;
  background-color: #f6f6f6;
}
.cid-uUrHOxK5Dd .item-title {
  color: #303030;
}
.cid-uUrHOxK5Dd .mbr-text {
  margin-bottom: 4px;
  color: #303030;
  text-decoration: underline;
}
.cid-uUrHOxK5Dd .icons-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 12px;
}
.cid-uUrHOxK5Dd .iconfont-wrapper {
  padding: 11px;
  border-radius: 50%;
  transition: opacity 0.2s ease-out;
}
.cid-uUrHOxK5Dd .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #303030;
  transition: all 0.2s ease-out;
}
.cid-uUrHOxK5Dd .iconfont-wrapper:hover {
  background-color: #ffa0c4;
}
.cid-uUrHOxK5Dd .iconfont-wrapper:hover .mbr-iconfont {
  color: #f2148d;
}
.cid-uUrHOxK5Dd .mbr-section-btn {
  margin-top: 10px;
}
.cid-uUrHOAoojQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrHOAoojQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHOAoojQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHOAoojQ .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uUrHOAoojQ .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHOAoojQ .item {
    margin-bottom: 15px;
  }
}
.cid-uUrHOAoojQ .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #f2148d;
}
@media (max-width: 992px) {
  .cid-uUrHOAoojQ .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uUrHOAoojQ .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHOAoojQ .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrHOAoojQ .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #f2148d;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uUrHOAoojQ .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uUrHOAoojQ .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uUrHOAoojQ .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uUrHOAoojQ .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUrHOAoojQ .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUrHOAoojQ .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uUrHOAoojQ .card-title {
  color: #000000;
}
.cid-uUrHOAoojQ .card-text {
  color: #8a8a8a;
}
.cid-uUrHOATkaz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uUrHOATkaz .google-map {
  height: 30rem;
  position: relative;
}
.cid-uUrHOATkaz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUrHOATkaz .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-uUrHOATkaz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUrHOATkaz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUrHOATkaz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHOATkaz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHOBo6I5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrHOBo6I5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrHOBo6I5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrHOBo6I5 .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrHOBo6I5 .row-copyright p {
  width: 100%;
}
.cid-uUrHTtJJGO {
  background-color: transparent;
}
.cid-uUrHTtJJGO .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUrHTtJJGO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUrHTtJJGO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUrHTtJJGO .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUrHTtJJGO .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUrHTtJJGO .menu_box .navbar.opened,
  .cid-uUrHTtJJGO .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUrHTtJJGO .navbar-dropdown {
  position: relative !important;
}
.cid-uUrHTtJJGO .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUrHTtJJGO .btn:hover {
  box-shadow: none;
}
.cid-uUrHTtJJGO .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUrHTtJJGO .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUrHTtJJGO .nav-item {
    margin: 0 !important;
  }
}
.cid-uUrHTtJJGO .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUrHTtJJGO .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUrHTtJJGO .nav-item .nav-link:hover::before,
.cid-uUrHTtJJGO .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUrHTtJJGO .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUrHTtJJGO .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUrHTtJJGO .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUrHTtJJGO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUrHTtJJGO .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-uUrHTtJJGO .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUrHTtJJGO .offcanvas_box {
    display: none;
  }
}
.cid-uUrHTtJJGO .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUrHTtJJGO .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUrHTtJJGO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUrHTtJJGO .container {
  display: flex;
  margin: auto;
}
.cid-uUrHTtJJGO .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-uUrHTtJJGO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUrHTtJJGO .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUrHTtJJGO .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUrHTtJJGO .navbar-nav {
    margin: 0;
  }
}
.cid-uUrHTtJJGO .dropdown-menu,
.cid-uUrHTtJJGO .navbar.opened {
  background-color: false !important;
}
.cid-uUrHTtJJGO .nav-item:focus,
.cid-uUrHTtJJGO .nav-link:focus {
  outline: none;
}
.cid-uUrHTtJJGO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUrHTtJJGO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUrHTtJJGO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUrHTtJJGO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUrHTtJJGO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUrHTtJJGO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUrHTtJJGO .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUrHTtJJGO .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUrHTtJJGO .navbar.opened {
  transition: all 0.3s;
}
.cid-uUrHTtJJGO .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUrHTtJJGO .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUrHTtJJGO .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUrHTtJJGO .navbar.collapsed {
  justify-content: center;
}
.cid-uUrHTtJJGO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUrHTtJJGO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUrHTtJJGO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUrHTtJJGO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUrHTtJJGO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUrHTtJJGO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUrHTtJJGO .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUrHTtJJGO .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUrHTtJJGO .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUrHTtJJGO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUrHTtJJGO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUrHTtJJGO .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUrHTtJJGO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUrHTtJJGO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUrHTtJJGO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUrHTtJJGO .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUrHTtJJGO .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUrHTtJJGO .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUrHTtJJGO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUrHTtJJGO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUrHTtJJGO .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUrHTtJJGO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUrHTtJJGO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUrHTtJJGO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUrHTtJJGO .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-uUrHTtJJGO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUrHTtJJGO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUrHTtJJGO .dropdown-item.active,
.cid-uUrHTtJJGO .dropdown-item:active {
  background-color: transparent;
}
.cid-uUrHTtJJGO .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUrHTtJJGO .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUrHTtJJGO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUrHTtJJGO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUrHTtJJGO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUrHTtJJGO ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUrHTtJJGO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUrHTtJJGO 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: #ff5753;
}
.cid-uUrHTtJJGO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUrHTtJJGO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUrHTtJJGO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHTtJJGO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHTtJJGO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUrHTtJJGO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHTtJJGO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUrHTtJJGO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUrHTtJJGO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHTtJJGO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUrHTtJJGO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUrHTtJJGO .navbar {
    height: 70px;
  }
  .cid-uUrHTtJJGO .navbar.opened {
    height: auto;
  }
  .cid-uUrHTtJJGO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUrHTtJJGO .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUrHTtJJGO .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUrHTtJJGO .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUrHTtJJGO .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUrHTtJJGO .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUrHTtJJGO .text_widget {
  margin-bottom: 32px;
}
.cid-uUrHTtJJGO .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUrHTtJJGO .text_widget a:hover,
.cid-uUrHTtJJGO .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUrHTtJJGO .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUrHTtJJGO .icons-menu-main {
  display: flex;
}
.cid-uUrHTtJJGO .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUrHTtJJGO .navbar-caption {
  color: #000000;
}
.cid-uUrHTtJJGO .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUrHTtJJGO .mbr-section-subtitle,
.cid-uUrHTtJJGO .text_widget,
.cid-uUrHTtJJGO .mbr-section-btn {
  text-align: center;
}
.cid-uUrHTtJJGO a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUrHTv3FCz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffd785;
  background: linear-gradient(to right top, #ffd785, #f2148d);
}
.cid-uUrHTv3FCz .bg-icon {
  z-index: 5;
  position: absolute;
  top: 50%;
  right: 10%;
  margin-top: -20vh;
}
.cid-uUrHTv3FCz .bg-icon .mbr-iconfont {
  font-size: 40vh;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.1);
}
.cid-uUrHTv3FCz .card-wrapper {
  border-radius: 0;
  padding: 1rem;
}
.cid-uUrHTv3FCz .card-wrapper .card-box {
  display: flex;
}
.cid-uUrHTv3FCz .card-title {
  font-weight: 600;
}
.cid-uUrHTv3FCz .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-right: 30px;
  margin-left: 10px;
  margin-top: 5px;
}
.cid-uUrHTv3FCz .card-img .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-block;
  line-height: 61px;
  text-align: center;
  transition: all .3s;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cid-uUrHTv3FCz .card-img .icon .mbr-iconfont {
  font-size: 40px;
  line-height: 61px;
  color: #ffffff;
}
.cid-uUrHTv3FCz .card-img .icon span {
  color: #ffffff;
  font-size: 22px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-uUrHTv3FCz .card-box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cid-uUrHTv3FCz .card-box .card-img {
    align-self: center;
    margin: 0;
    margin-bottom: 20px;
  }
  .cid-uUrHTv3FCz * {
    text-align: center;
  }
  .cid-uUrHTv3FCz .bg-icon {
    display: none;
  }
}
.cid-uUrHTv3FCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHTv3FCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHTx3GXC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrHTx3GXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHTx3GXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHTx3GXC .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uUrHTx3GXC .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHTx3GXC .item {
    margin-bottom: 15px;
  }
}
.cid-uUrHTx3GXC .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #f2148d;
}
@media (max-width: 992px) {
  .cid-uUrHTx3GXC .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uUrHTx3GXC .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHTx3GXC .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrHTx3GXC .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #f2148d;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uUrHTx3GXC .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uUrHTx3GXC .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uUrHTx3GXC .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uUrHTx3GXC .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUrHTx3GXC .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUrHTx3GXC .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uUrHTx3GXC .card-title {
  color: #000000;
}
.cid-uUrHTx3GXC .card-text {
  color: #8a8a8a;
}
.cid-uUrHTxwzPI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uUrHTxwzPI .google-map {
  height: 30rem;
  position: relative;
}
.cid-uUrHTxwzPI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUrHTxwzPI .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-uUrHTxwzPI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUrHTxwzPI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUrHTxwzPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHTxwzPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHTxZD2Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrHTxZD2Y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrHTxZD2Y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrHTxZD2Y .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrHTxZD2Y .row-copyright p {
  width: 100%;
}
.cid-uUrHZtto8Q {
  background-color: transparent;
}
.cid-uUrHZtto8Q .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUrHZtto8Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUrHZtto8Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUrHZtto8Q .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUrHZtto8Q .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUrHZtto8Q .menu_box .navbar.opened,
  .cid-uUrHZtto8Q .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUrHZtto8Q .navbar-dropdown {
  position: relative !important;
}
.cid-uUrHZtto8Q .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUrHZtto8Q .btn:hover {
  box-shadow: none;
}
.cid-uUrHZtto8Q .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUrHZtto8Q .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUrHZtto8Q .nav-item {
    margin: 0 !important;
  }
}
.cid-uUrHZtto8Q .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUrHZtto8Q .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUrHZtto8Q .nav-item .nav-link:hover::before,
.cid-uUrHZtto8Q .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUrHZtto8Q .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUrHZtto8Q .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUrHZtto8Q .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUrHZtto8Q .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUrHZtto8Q .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-uUrHZtto8Q .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUrHZtto8Q .offcanvas_box {
    display: none;
  }
}
.cid-uUrHZtto8Q .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUrHZtto8Q .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUrHZtto8Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUrHZtto8Q .container {
  display: flex;
  margin: auto;
}
.cid-uUrHZtto8Q .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-uUrHZtto8Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUrHZtto8Q .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUrHZtto8Q .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUrHZtto8Q .navbar-nav {
    margin: 0;
  }
}
.cid-uUrHZtto8Q .dropdown-menu,
.cid-uUrHZtto8Q .navbar.opened {
  background-color: false !important;
}
.cid-uUrHZtto8Q .nav-item:focus,
.cid-uUrHZtto8Q .nav-link:focus {
  outline: none;
}
.cid-uUrHZtto8Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUrHZtto8Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUrHZtto8Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUrHZtto8Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUrHZtto8Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUrHZtto8Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUrHZtto8Q .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUrHZtto8Q .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUrHZtto8Q .navbar.opened {
  transition: all 0.3s;
}
.cid-uUrHZtto8Q .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUrHZtto8Q .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUrHZtto8Q .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUrHZtto8Q .navbar.collapsed {
  justify-content: center;
}
.cid-uUrHZtto8Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUrHZtto8Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUrHZtto8Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUrHZtto8Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUrHZtto8Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUrHZtto8Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUrHZtto8Q .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUrHZtto8Q .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUrHZtto8Q .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUrHZtto8Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUrHZtto8Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUrHZtto8Q .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUrHZtto8Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUrHZtto8Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUrHZtto8Q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUrHZtto8Q .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUrHZtto8Q .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUrHZtto8Q .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUrHZtto8Q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUrHZtto8Q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUrHZtto8Q .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUrHZtto8Q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUrHZtto8Q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUrHZtto8Q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUrHZtto8Q .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-uUrHZtto8Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUrHZtto8Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUrHZtto8Q .dropdown-item.active,
.cid-uUrHZtto8Q .dropdown-item:active {
  background-color: transparent;
}
.cid-uUrHZtto8Q .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUrHZtto8Q .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUrHZtto8Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUrHZtto8Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUrHZtto8Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUrHZtto8Q ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUrHZtto8Q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUrHZtto8Q 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: #ff5753;
}
.cid-uUrHZtto8Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUrHZtto8Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUrHZtto8Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHZtto8Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrHZtto8Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUrHZtto8Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHZtto8Q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUrHZtto8Q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUrHZtto8Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrHZtto8Q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUrHZtto8Q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUrHZtto8Q .navbar {
    height: 70px;
  }
  .cid-uUrHZtto8Q .navbar.opened {
    height: auto;
  }
  .cid-uUrHZtto8Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUrHZtto8Q .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUrHZtto8Q .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUrHZtto8Q .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUrHZtto8Q .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUrHZtto8Q .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUrHZtto8Q .text_widget {
  margin-bottom: 32px;
}
.cid-uUrHZtto8Q .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUrHZtto8Q .text_widget a:hover,
.cid-uUrHZtto8Q .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUrHZtto8Q .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUrHZtto8Q .icons-menu-main {
  display: flex;
}
.cid-uUrHZtto8Q .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUrHZtto8Q .navbar-caption {
  color: #000000;
}
.cid-uUrHZtto8Q .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUrHZtto8Q .mbr-section-subtitle,
.cid-uUrHZtto8Q .text_widget,
.cid-uUrHZtto8Q .mbr-section-btn {
  text-align: center;
}
.cid-uUrHZtto8Q a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUrHZuF9NV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUrHZuF9NV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHZuF9NV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHZuF9NV .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uUrHZuF9NV .mbr-section-title {
  color: #f2148d;
}
.cid-uUrHZuF9NV .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uUrHZuF9NV .cards-row {
  row-gap: 32px;
}
.cid-uUrHZuF9NV .item {
  border-radius: 0;
}
.cid-uUrHZuF9NV .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 32px 32px 24px;
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-uUrHZuF9NV .item-wrapper {
    padding: 32px 16px 24px;
  }
}
.cid-uUrHZuF9NV .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-right: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.cid-uUrHZuF9NV .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uUrHZuF9NV .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-uUrHZuF9NV .card-subtitle {
  color: #24262b;
}
.cid-uUrHZuF9NV .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uUrHZuF9NV .card-name {
  color: #24262b;
}
.cid-uUrHZuF9NV .card-text {
  color: #24262b;
}
.cid-uUrHZw9LAD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrHZw9LAD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHZw9LAD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHZw9LAD .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uUrHZw9LAD .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHZw9LAD .item {
    margin-bottom: 15px;
  }
}
.cid-uUrHZw9LAD .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #f2148d;
}
@media (max-width: 992px) {
  .cid-uUrHZw9LAD .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uUrHZw9LAD .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrHZw9LAD .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrHZw9LAD .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #f2148d;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uUrHZw9LAD .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uUrHZw9LAD .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uUrHZw9LAD .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uUrHZw9LAD .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUrHZw9LAD .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUrHZw9LAD .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uUrHZw9LAD .card-title {
  color: #000000;
}
.cid-uUrHZw9LAD .card-text {
  color: #8a8a8a;
}
.cid-uUrHZwDtPf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uUrHZwDtPf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uUrHZwDtPf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUrHZwDtPf .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-uUrHZwDtPf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUrHZwDtPf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUrHZwDtPf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrHZwDtPf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrHZx77yS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrHZx77yS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrHZx77yS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrHZx77yS .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrHZx77yS .row-copyright p {
  width: 100%;
}
.cid-uUrI75FouX {
  background-color: transparent;
}
.cid-uUrI75FouX .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUrI75FouX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUrI75FouX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUrI75FouX .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUrI75FouX .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUrI75FouX .menu_box .navbar.opened,
  .cid-uUrI75FouX .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUrI75FouX .navbar-dropdown {
  position: relative !important;
}
.cid-uUrI75FouX .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUrI75FouX .btn:hover {
  box-shadow: none;
}
.cid-uUrI75FouX .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUrI75FouX .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUrI75FouX .nav-item {
    margin: 0 !important;
  }
}
.cid-uUrI75FouX .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUrI75FouX .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUrI75FouX .nav-item .nav-link:hover::before,
.cid-uUrI75FouX .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUrI75FouX .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUrI75FouX .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUrI75FouX .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUrI75FouX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUrI75FouX .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-uUrI75FouX .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUrI75FouX .offcanvas_box {
    display: none;
  }
}
.cid-uUrI75FouX .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUrI75FouX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUrI75FouX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUrI75FouX .container {
  display: flex;
  margin: auto;
}
.cid-uUrI75FouX .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-uUrI75FouX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUrI75FouX .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUrI75FouX .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUrI75FouX .navbar-nav {
    margin: 0;
  }
}
.cid-uUrI75FouX .dropdown-menu,
.cid-uUrI75FouX .navbar.opened {
  background-color: false !important;
}
.cid-uUrI75FouX .nav-item:focus,
.cid-uUrI75FouX .nav-link:focus {
  outline: none;
}
.cid-uUrI75FouX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUrI75FouX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUrI75FouX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUrI75FouX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUrI75FouX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUrI75FouX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUrI75FouX .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUrI75FouX .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUrI75FouX .navbar.opened {
  transition: all 0.3s;
}
.cid-uUrI75FouX .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUrI75FouX .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUrI75FouX .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUrI75FouX .navbar.collapsed {
  justify-content: center;
}
.cid-uUrI75FouX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUrI75FouX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUrI75FouX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUrI75FouX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUrI75FouX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUrI75FouX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUrI75FouX .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUrI75FouX .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUrI75FouX .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUrI75FouX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUrI75FouX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUrI75FouX .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUrI75FouX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUrI75FouX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUrI75FouX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUrI75FouX .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUrI75FouX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUrI75FouX .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUrI75FouX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUrI75FouX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUrI75FouX .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUrI75FouX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUrI75FouX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUrI75FouX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUrI75FouX .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-uUrI75FouX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUrI75FouX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUrI75FouX .dropdown-item.active,
.cid-uUrI75FouX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUrI75FouX .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUrI75FouX .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUrI75FouX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUrI75FouX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUrI75FouX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUrI75FouX ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUrI75FouX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUrI75FouX 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: #ff5753;
}
.cid-uUrI75FouX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUrI75FouX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUrI75FouX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrI75FouX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrI75FouX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUrI75FouX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrI75FouX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUrI75FouX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUrI75FouX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrI75FouX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUrI75FouX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUrI75FouX .navbar {
    height: 70px;
  }
  .cid-uUrI75FouX .navbar.opened {
    height: auto;
  }
  .cid-uUrI75FouX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUrI75FouX .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUrI75FouX .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUrI75FouX .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUrI75FouX .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUrI75FouX .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUrI75FouX .text_widget {
  margin-bottom: 32px;
}
.cid-uUrI75FouX .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUrI75FouX .text_widget a:hover,
.cid-uUrI75FouX .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUrI75FouX .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUrI75FouX .icons-menu-main {
  display: flex;
}
.cid-uUrI75FouX .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUrI75FouX .navbar-caption {
  color: #000000;
}
.cid-uUrI75FouX .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUrI75FouX .mbr-section-subtitle,
.cid-uUrI75FouX .text_widget,
.cid-uUrI75FouX .mbr-section-btn {
  text-align: center;
}
.cid-uUrI75FouX a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUrI76PoAa {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uUrI76PoAa .row {
  flex-direction: row-reverse;
}
.cid-uUrI76PoAa .mbr-text,
.cid-uUrI76PoAa .mbr-section-btn {
  color: #333333;
}
.cid-uUrI76PoAa .mbr-section-title {
  color: #f2148d;
  text-align: left;
}
.cid-uUrI76PoAa .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uUrI76PoAa * {
    text-align: center;
  }
  .cid-uUrI76PoAa .buttons-wrap {
    justify-content: center;
  }
}
.cid-uUrI76PoAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrI76PoAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrI77M9xF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrI77M9xF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrI77M9xF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrI77M9xF .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uUrI77M9xF .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrI77M9xF .item {
    margin-bottom: 15px;
  }
}
.cid-uUrI77M9xF .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #f2148d;
}
@media (max-width: 992px) {
  .cid-uUrI77M9xF .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uUrI77M9xF .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUrI77M9xF .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uUrI77M9xF .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #f2148d;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uUrI77M9xF .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uUrI77M9xF .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uUrI77M9xF .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uUrI77M9xF .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUrI77M9xF .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUrI77M9xF .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uUrI77M9xF .card-title {
  color: #000000;
}
.cid-uUrI77M9xF .card-text {
  color: #8a8a8a;
}
.cid-uUrI78j5DS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uUrI78j5DS .google-map {
  height: 30rem;
  position: relative;
}
.cid-uUrI78j5DS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUrI78j5DS .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-uUrI78j5DS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUrI78j5DS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUrI78j5DS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUrI78j5DS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUrI78PF3g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrI78PF3g .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrI78PF3g .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrI78PF3g .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrI78PF3g .row-copyright p {
  width: 100%;
}
.cid-uUrIdjIkvN {
  background-color: transparent;
}
.cid-uUrIdjIkvN .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uUrIdjIkvN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uUrIdjIkvN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUrIdjIkvN .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uUrIdjIkvN .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uUrIdjIkvN .menu_box .navbar.opened,
  .cid-uUrIdjIkvN .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUrIdjIkvN .navbar-dropdown {
  position: relative !important;
}
.cid-uUrIdjIkvN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUrIdjIkvN .btn:hover {
  box-shadow: none;
}
.cid-uUrIdjIkvN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUrIdjIkvN .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uUrIdjIkvN .nav-item {
    margin: 0 !important;
  }
}
.cid-uUrIdjIkvN .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uUrIdjIkvN .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uUrIdjIkvN .nav-item .nav-link:hover::before,
.cid-uUrIdjIkvN .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uUrIdjIkvN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUrIdjIkvN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uUrIdjIkvN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUrIdjIkvN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUrIdjIkvN .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-uUrIdjIkvN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUrIdjIkvN .offcanvas_box {
    display: none;
  }
}
.cid-uUrIdjIkvN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uUrIdjIkvN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUrIdjIkvN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uUrIdjIkvN .container {
  display: flex;
  margin: auto;
}
.cid-uUrIdjIkvN .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-uUrIdjIkvN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUrIdjIkvN .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uUrIdjIkvN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUrIdjIkvN .navbar-nav {
    margin: 0;
  }
}
.cid-uUrIdjIkvN .dropdown-menu,
.cid-uUrIdjIkvN .navbar.opened {
  background-color: false !important;
}
.cid-uUrIdjIkvN .nav-item:focus,
.cid-uUrIdjIkvN .nav-link:focus {
  outline: none;
}
.cid-uUrIdjIkvN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUrIdjIkvN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUrIdjIkvN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUrIdjIkvN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUrIdjIkvN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUrIdjIkvN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUrIdjIkvN .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uUrIdjIkvN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uUrIdjIkvN .navbar.opened {
  transition: all 0.3s;
}
.cid-uUrIdjIkvN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUrIdjIkvN .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uUrIdjIkvN .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUrIdjIkvN .navbar.collapsed {
  justify-content: center;
}
.cid-uUrIdjIkvN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUrIdjIkvN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUrIdjIkvN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUrIdjIkvN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUrIdjIkvN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUrIdjIkvN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUrIdjIkvN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUrIdjIkvN .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUrIdjIkvN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uUrIdjIkvN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUrIdjIkvN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUrIdjIkvN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUrIdjIkvN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUrIdjIkvN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uUrIdjIkvN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUrIdjIkvN .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uUrIdjIkvN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUrIdjIkvN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUrIdjIkvN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uUrIdjIkvN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUrIdjIkvN .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUrIdjIkvN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUrIdjIkvN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUrIdjIkvN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUrIdjIkvN .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-uUrIdjIkvN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uUrIdjIkvN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUrIdjIkvN .dropdown-item.active,
.cid-uUrIdjIkvN .dropdown-item:active {
  background-color: transparent;
}
.cid-uUrIdjIkvN .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uUrIdjIkvN .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uUrIdjIkvN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUrIdjIkvN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUrIdjIkvN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUrIdjIkvN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uUrIdjIkvN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUrIdjIkvN 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: #ff5753;
}
.cid-uUrIdjIkvN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUrIdjIkvN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUrIdjIkvN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrIdjIkvN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUrIdjIkvN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUrIdjIkvN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrIdjIkvN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUrIdjIkvN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUrIdjIkvN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUrIdjIkvN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUrIdjIkvN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUrIdjIkvN .navbar {
    height: 70px;
  }
  .cid-uUrIdjIkvN .navbar.opened {
    height: auto;
  }
  .cid-uUrIdjIkvN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUrIdjIkvN .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uUrIdjIkvN .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uUrIdjIkvN .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uUrIdjIkvN .navbar-caption:hover {
  color: #f2148d;
}
@media (min-width: 992px) {
  .cid-uUrIdjIkvN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uUrIdjIkvN .text_widget {
  margin-bottom: 32px;
}
.cid-uUrIdjIkvN .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uUrIdjIkvN .text_widget a:hover,
.cid-uUrIdjIkvN .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uUrIdjIkvN .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uUrIdjIkvN .icons-menu-main {
  display: flex;
}
.cid-uUrIdjIkvN .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUrIdjIkvN .navbar-caption {
  color: #000000;
}
.cid-uUrIdjIkvN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uUrIdjIkvN .mbr-section-subtitle,
.cid-uUrIdjIkvN .text_widget,
.cid-uUrIdjIkvN .mbr-section-btn {
  text-align: center;
}
.cid-uUrIdjIkvN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUrIfzaZ9h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUrIdlJexD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUrIdlJexD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUrIdlJexD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUrIdlJexD .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-uUrIdlJexD .row-copyright p {
  width: 100%;
}
