body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.3rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #eff98b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #eff98b !important;
  border-color: #eff98b !important;
  transition: all .5s;
  color: #747e07 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #747e07 !important;
  background-color: #e5f542 !important;
  border-color: #e5f542 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #747e07 !important;
  background-color: #e5f542 !important;
  border-color: #e5f542 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e2f42a !important;
  color: #e2f42a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #747e07 !important;
  background-color: #eff98b !important;
  border-color: #eff98b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #747e07 !important;
  background-color: #eff98b !important;
  border-color: #eff98b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #eff98b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e2f42a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #eff98b;
  border-color: #eff98b;
  color: #8a9708;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #eff98b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.3rem;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #eff98b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #eff98b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #eff98b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #eff98b;
  color: #000000;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #eff98b;
  border-bottom-color: #eff98b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #eff98b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #2bdc9d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23eff98b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uicvj3bs4z {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uicvj3bs4z .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uicvj3bs4z .menu_box .navbar.opened,
  .cid-uicvj3bs4z .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uicvj3bs4z .navbar-dropdown {
  position: relative !important;
}
.cid-uicvj3bs4z .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uicvj3bs4z .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uicvj3bs4z .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uicvj3bs4z .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uicvj3bs4z .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uicvj3bs4z .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-body .mbr-text,
  .cid-uicvj3bs4z .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uicvj3bs4z .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uicvj3bs4z ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uicvj3bs4z li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uicvj3bs4z .lg_brand {
    margin: 0 1rem;
  }
  .cid-uicvj3bs4z .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uicvj3bs4z .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 !important;
  }
}
.cid-uicvj3bs4z .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uicvj3bs4z .nav-item .nav-link:hover,
.cid-uicvj3bs4z .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uicvj3bs4z .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .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-uicvj3bs4z .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uicvj3bs4z .offcanvas_box {
    display: none;
  }
}
.cid-uicvj3bs4z .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uicvj3bs4z .container {
  display: flex;
  margin: auto;
}
.cid-uicvj3bs4z .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uicvj3bs4z .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uicvj3bs4z .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uicvj3bs4z .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .navbar-nav {
    margin: 0;
  }
}
.cid-uicvj3bs4z .dropdown-menu,
.cid-uicvj3bs4z .navbar.opened {
  background-color: false !important;
}
.cid-uicvj3bs4z .nav-item:focus,
.cid-uicvj3bs4z .nav-link:focus {
  outline: none;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uicvj3bs4z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uicvj3bs4z .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uicvj3bs4z .navbar.opened {
  transition: all 0.3s;
}
.cid-uicvj3bs4z .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uicvj3bs4z .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uicvj3bs4z .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uicvj3bs4z .navbar.collapsed {
  justify-content: center;
}
.cid-uicvj3bs4z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uicvj3bs4z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uicvj3bs4z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uicvj3bs4z .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uicvj3bs4z .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uicvj3bs4z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uicvj3bs4z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uicvj3bs4z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uicvj3bs4z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uicvj3bs4z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uicvj3bs4z .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uicvj3bs4z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uicvj3bs4z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uicvj3bs4z .dropdown-item.active,
.cid-uicvj3bs4z .dropdown-item:active {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uicvj3bs4z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uicvj3bs4z ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uicvj3bs4z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uicvj3bs4z button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar {
    height: 70px;
  }
  .cid-uicvj3bs4z .navbar.opened {
    height: auto;
  }
  .cid-uicvj3bs4z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uicvj3bs4z .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uicvj3bs4z .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uicvj3bs4z .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uicvj3bs4z .text_widget {
  margin-bottom: 32px;
}
.cid-uicvj3bs4z .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uicvj3bs4z .text_widget a:hover,
.cid-uicvj3bs4z .text_widget a:focus {
  opacity: .8;
}
.cid-uicvj3bs4z .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navbar-caption {
  color: #0f1d07;
}
.cid-uicvj3bs4z .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper {
    display: block;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uicvj3bs4z .mbr-section-subtitle,
.cid-uicvj3bs4z .text_widget,
.cid-uicvj3bs4z .mbr-section-btn {
  text-align: center;
}
.cid-uicvj3bs4z a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uik2z8dIFH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uik2z8dIFH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uik2z8dIFH .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-uik2z8dIFH .container {
    padding: 0 30px;
  }
}
.cid-uik2z8dIFH .row .card {
  justify-content: center;
}
.cid-uik2z8dIFH .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uik2z8dIFH .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uik2z8dIFH .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uik2z8dIFH .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uik2z8dIFH .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uik2z8dIFH .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uik2z8dIFH .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uik2z8dIFH .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uik2z8dIFH .mbr-section-title {
  color: #ffffff;
}
.cid-uik2z8dIFH .mbr-section-subtitle {
  color: #f4f8fa;
}
.cid-uibTG2alDr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uibTG2alDr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uibTG2alDr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uibTG2alDr .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uibTG2alDr .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uibTG2alDr .container {
    padding: 0 30px;
  }
}
.cid-uibTG2alDr .row {
  justify-content: center;
}
.cid-uibTG2alDr .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibTG2alDr .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uibTG2alDr .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibTG2alDr .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uibTG2alDr .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uibTG2alDr .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uibTG2alDr .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uibTG2alDr .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #f4f8fa;
}
.cid-uibTG2alDr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uibTG2alDr .mbr-text {
  color: #144031;
}
.cid-uibTG2alDr .list,
.cid-uibTG2alDr .item-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-uicJizSqfp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #54173b;
}
.cid-uicJizSqfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uicJizSqfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uicJizSqfp .row {
  justify-content: space-between;
}
.cid-uicJizSqfp .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper {
    padding: 0;
  }
}
.cid-uicJizSqfp .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uicJizSqfp .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uicJizSqfp .mbr-section-title {
  color: #000000;
}
.cid-uicJizSqfp .mbr-desc {
  color: #000000;
}
.cid-uicJizSqfp .mbr-text {
  color: #ffffff;
}
.cid-uicHjSTZC8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-uicHjSTZC8 .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uicHjSTZC8 .mbr-section-title {
  margin: 0;
}
.cid-uicHjSTZC8 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uicHjSTZC8 .card-img {
  text-align: inherit;
}
.cid-uicHjSTZC8 .card-img span {
  background: linear-gradient(90deg, #000000, #54173b);
}
.cid-uicHjSTZC8 .mbr-text {
  color: #8d97ad;
}
.cid-uicHjSTZC8 .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uicHjSTZC8 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uicHjSTZC8 .mbr-card-title DIV {
  text-align: center;
}
.cid-uicHjSTZC8 .mbr-card-title {
  text-align: center;
}
.cid-uicJR4rZ1n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uicJR4rZ1n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uicJR4rZ1n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uicJR4rZ1n .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uicJR4rZ1n .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uicJR4rZ1n .container {
    padding: 0 24px;
  }
}
.cid-uicJR4rZ1n .row {
  justify-content: center;
}
.cid-uicJR4rZ1n .title-wrapper {
  padding-right: 48px;
  padding-right: 0;
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uicJR4rZ1n .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .title-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uicJR4rZ1n .title-wrapper {
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .title-wrapper {
    padding-left: 0;
  }
}
.cid-uicJR4rZ1n .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #f4f8fa;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #0b062f;
}
.cid-uicJR4rZ1n .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uicJR4rZ1n .text-wrapper {
  padding-left: 48px;
  padding-left: 0;
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uicJR4rZ1n .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .text-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uicJR4rZ1n .text-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uicJR4rZ1n .text-wrapper {
    padding-right: 0;
  }
}
.cid-uicJR4rZ1n .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uicJR4rZ1n .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uicJR4rZ1n .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uicJR4rZ1n .mbr-section-title {
  color: #ffffff;
}
.cid-uicJR4rZ1n .mbr-desc {
  color: #18212d;
}
.cid-uicJR4rZ1n .mbr-text {
  color: #ffffff;
}
.cid-uicJR4rZ1n .mbr-desc,
.cid-uicJR4rZ1n .desc-wrapper {
  text-align: center;
}
.cid-qKSGEV70WT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKSGEV70WT .mbr-section-title {
  margin: 0;
}
.cid-qKSGEV70WT .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-qKSGEV70WT .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-qKSGEV70WT .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-qKSGEV70WT .card1 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-qKSGEV70WT .card2 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-qKSGEV70WT .card3 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-qKSGEV70WT .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-qKSGEV70WT .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-qKSGEV70WT .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-qKSGEV70WT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qKSGEV70WT .card1 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-qKSGEV70WT .card2 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-qKSGEV70WT .card3 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uibYMj0KKJ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #54173b;
}
.cid-uibYMj0KKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uibYMj0KKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uibYMj0KKJ .row {
  justify-content: space-between;
}
.cid-uibYMj0KKJ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper {
    padding: 0;
  }
}
.cid-uibYMj0KKJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uibYMj0KKJ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uibYMj0KKJ .mbr-section-title {
  color: #000000;
}
.cid-uibYMj0KKJ .mbr-desc {
  color: #000000;
}
.cid-uibYMj0KKJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uibYMj0KKJ .mbr-section-title,
.cid-uibYMj0KKJ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyaj8Qg5R {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #54173b, #f4f8fa);
}
.cid-uyyaj8Qg5R .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-uyyaj8Qg5R .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyaj8Qg5R .card-wrap {
  background-color: #54173b;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uyyaj8Qg5R .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uyyaj8Qg5R .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uyyaj8Qg5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyaj8Qg5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyaj8Qg5R .mbr-section-subtitle,
.cid-uyyaj8Qg5R .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyaj8Qg5R H1 {
  color: #ffffff;
}
.cid-uigAw2Y5Yx {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #54173b;
}
.cid-uigAw2Y5Yx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uigAw2Y5Yx .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uigAw2Y5Yx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uigAw2Y5Yx h1 {
  max-width: 800px;
}
.cid-uigAw2Y5Yx p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uigAw2Y5Yx .btn:hover {
  transform: scale(1.1);
  background: #2bdc9d !important;
  border-color: #2bdc9d !important;
  color: #eff98b !important;
}
.cid-uigAw2Y5Yx .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uigAw2Y5Yx .btn div {
  overflow: hidden;
}
.cid-uigAw2Y5Yx .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uigAw2Y5Yx {
    align-items: center;
  }
  .cid-uigAw2Y5Yx .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uigAw2Y5Yx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uigAw2Y5Yx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uigAw2Y5Yx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uigAw2Y5Yx .content-wrap {
    width: 100%;
  }
}
.cid-uigAw2Y5Yx .mbr-section-subtitle,
.cid-uigAw2Y5Yx .line {
  color: #291f1e;
}
.cid-uigAw2Y5Yx .mbr-text,
.cid-uigAw2Y5Yx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uigAw2Y5Yx .mbr-section-title {
  color: #ffffff;
}
.cid-uibZ0PHOqV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uibZ0PHOqV .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uibZ0PHOqV .panel-group {
  width: 100%;
}
.cid-uibZ0PHOqV .panel-text,
.cid-uibZ0PHOqV .header-text,
.cid-uibZ0PHOqV .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uibZ0PHOqV .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uibZ0PHOqV .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #54173b;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #54173b;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-uibZ0PHOqV .card .panel-body {
  background: #000000;
}
.cid-uibZ0PHOqV .sign {
  color: #232323;
}
.cid-uibZ0PHOqV .header-text {
  color: #ffffff;
  text-align: left;
}
.cid-uibZ0PHOqV .panel-text {
  color: #000000;
}
.cid-uibZ0PHOqV .mbr-section-title {
  text-align: left;
}
.cid-uik4N9tXCf {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #54173b;
}
.cid-uik4N9tXCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uik4N9tXCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uik4N9tXCf img {
  border-radius: 2rem;
}
.cid-uik4N9tXCf .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uik4N9tXCf .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #eff98b;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uik4N9tXCf .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2bdc9d;
  font-size: 1.5rem;
}
.cid-uik4N9tXCf .mbr-section-title {
  color: #ffffff;
}
.cid-uik4N9tXCf .mbr-text,
.cid-uik4N9tXCf .mbr-section-btn {
  color: #ffffff;
}
.cid-uik4N9tXCf .mbr-section-subtitle,
.cid-uik4N9tXCf .align-wrapper {
  color: #04492e;
}
.cid-uif33eukFR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f8fa;
}
.cid-uif33eukFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uif33eukFR .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-uif33eukFR .container {
    padding: 0 15px;
  }
}
.cid-uif33eukFR .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uif33eukFR .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uif33eukFR .content-wrapper {
    padding-right: 0;
  }
}
.cid-uif33eukFR .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uif33eukFR .content-wrap {
    display: block;
  }
}
.cid-uif33eukFR .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uif33eukFR .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uif33eukFR .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uif33eukFR .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uif33eukFR .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uif33eukFR .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uif33eukFR .mbr-section-title {
  color: #3f1819;
}
.cid-uif33eukFR .mbr-desc,
.cid-uif33eukFR .desc-wrapper {
  color: #3f1819;
}
.cid-uik6aCcNWq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #54173b;
}
.cid-uik6aCcNWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uik6aCcNWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uik6aCcNWq .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uik6aCcNWq .mbr-text,
.cid-uik6aCcNWq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uik6aCcNWq b,
.cid-uik6aCcNWq strong {
  font-weight: 900;
}
.cid-uik6aCcNWq .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uic1dntWaC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uic1dntWaC .google-map {
  height: 25rem;
  position: relative;
}
.cid-uic1dntWaC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uic1dntWaC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uic1dntWaC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uic1dntWaC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uicOiYYagV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .content {
    text-align: center;
  }
  .cid-uicOiYYagV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uicOiYYagV .logo-subtitle {
  color: #8d97ad;
}
.cid-uicOiYYagV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uicOiYYagV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uicOiYYagV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uicOiYYagV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uicOiYYagV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uicOiYYagV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uicOiYYagV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uicOiYYagV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uicOiYYagV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uicOiYYagV .list-item {
  display: flex;
}
.cid-uicOiYYagV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uicOiYYagV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uicOiYYagV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uicOiYYagV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uicOiYYagV .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uicOiYYagV P {
  color: #ffffff;
}
.cid-uicOiYYagV .copyright > p {
  text-align: left;
}
.cid-uigUZqfH9g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uigUZqfH9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uigUZqfH9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uigUZqfH9g .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .container {
    padding: 0 20px;
  }
}
.cid-uigUZqfH9g .row {
  justify-content: space-between;
}
.cid-uigUZqfH9g .card {
  justify-content: center;
}
.cid-uigUZqfH9g .content-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uigUZqfH9g .content-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .content-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uigUZqfH9g .content-wrapper .content-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uigUZqfH9g .content-wrapper .content-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .content-wrapper .content-wrap {
    padding: 0;
  }
}
.cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-number {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-number {
    margin-bottom: 40px;
  }
}
.cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-section-title {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
.cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #1e1d1c;
  opacity: .2;
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uigUZqfH9g .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uigUZqfH9g .image-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uigUZqfH9g .image-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uigUZqfH9g .image-wrapper img {
  height: 800px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uigUZqfH9g .image-wrapper img {
    height: 350px;
  }
}
.cid-uigUZqfH9g .mbr-number {
  color: #1e1d1c;
}
.cid-uigUZqfH9g .mbr-section-title {
  color: #1e1d1c;
}
.cid-uigUZqfH9g .mbr-text {
  color: #1e1d1c;
}
.cid-uic9KXG88A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
.cid-uic9KXG88A .mbr-text {
  color: #ffffff;
}
.cid-uic9L25rG5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uic9L25rG5 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uic9L25rG5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uic9L25rG5 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uic9L25rG5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uic9L25rG5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uicvj3bs4z {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uicvj3bs4z .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uicvj3bs4z .menu_box .navbar.opened,
  .cid-uicvj3bs4z .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uicvj3bs4z .navbar-dropdown {
  position: relative !important;
}
.cid-uicvj3bs4z .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uicvj3bs4z .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uicvj3bs4z .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uicvj3bs4z .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uicvj3bs4z .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uicvj3bs4z .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-body .mbr-text,
  .cid-uicvj3bs4z .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uicvj3bs4z .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uicvj3bs4z ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uicvj3bs4z li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uicvj3bs4z .lg_brand {
    margin: 0 1rem;
  }
  .cid-uicvj3bs4z .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uicvj3bs4z .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 !important;
  }
}
.cid-uicvj3bs4z .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uicvj3bs4z .nav-item .nav-link:hover,
.cid-uicvj3bs4z .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uicvj3bs4z .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .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-uicvj3bs4z .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uicvj3bs4z .offcanvas_box {
    display: none;
  }
}
.cid-uicvj3bs4z .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uicvj3bs4z .container {
  display: flex;
  margin: auto;
}
.cid-uicvj3bs4z .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uicvj3bs4z .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uicvj3bs4z .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uicvj3bs4z .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .navbar-nav {
    margin: 0;
  }
}
.cid-uicvj3bs4z .dropdown-menu,
.cid-uicvj3bs4z .navbar.opened {
  background-color: false !important;
}
.cid-uicvj3bs4z .nav-item:focus,
.cid-uicvj3bs4z .nav-link:focus {
  outline: none;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uicvj3bs4z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uicvj3bs4z .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uicvj3bs4z .navbar.opened {
  transition: all 0.3s;
}
.cid-uicvj3bs4z .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uicvj3bs4z .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uicvj3bs4z .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uicvj3bs4z .navbar.collapsed {
  justify-content: center;
}
.cid-uicvj3bs4z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uicvj3bs4z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uicvj3bs4z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uicvj3bs4z .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uicvj3bs4z .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uicvj3bs4z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uicvj3bs4z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uicvj3bs4z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uicvj3bs4z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uicvj3bs4z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uicvj3bs4z .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uicvj3bs4z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uicvj3bs4z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uicvj3bs4z .dropdown-item.active,
.cid-uicvj3bs4z .dropdown-item:active {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uicvj3bs4z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uicvj3bs4z ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uicvj3bs4z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uicvj3bs4z button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar {
    height: 70px;
  }
  .cid-uicvj3bs4z .navbar.opened {
    height: auto;
  }
  .cid-uicvj3bs4z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uicvj3bs4z .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uicvj3bs4z .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uicvj3bs4z .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uicvj3bs4z .text_widget {
  margin-bottom: 32px;
}
.cid-uicvj3bs4z .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uicvj3bs4z .text_widget a:hover,
.cid-uicvj3bs4z .text_widget a:focus {
  opacity: .8;
}
.cid-uicvj3bs4z .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navbar-caption {
  color: #0f1d07;
}
.cid-uicvj3bs4z .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper {
    display: block;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uicvj3bs4z .mbr-section-subtitle,
.cid-uicvj3bs4z .text_widget,
.cid-uicvj3bs4z .mbr-section-btn {
  text-align: center;
}
.cid-uicvj3bs4z a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uicOiYYagV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .content {
    text-align: center;
  }
  .cid-uicOiYYagV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uicOiYYagV .logo-subtitle {
  color: #8d97ad;
}
.cid-uicOiYYagV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uicOiYYagV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uicOiYYagV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uicOiYYagV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uicOiYYagV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uicOiYYagV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uicOiYYagV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uicOiYYagV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uicOiYYagV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uicOiYYagV .list-item {
  display: flex;
}
.cid-uicOiYYagV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uicOiYYagV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uicOiYYagV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uicOiYYagV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uicOiYYagV .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uicOiYYagV P {
  color: #ffffff;
}
.cid-uicOiYYagV .copyright > p {
  text-align: left;
}
.cid-uicbk1ogNs {
  background-image: url("../../../assets/images/30044-slope-2018-pool-002-web-720x480.jpg");
}
.cid-uicbk1ogNs .mbr-overlay {
  background: #ffffff;
}
.cid-uicbk1ogNs .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uicbk1ogNs .mbr-section-subtitle,
.cid-uicbk1ogNs mbr-section-btn {
  color: #ffffff;
}
.cid-uicbk1ogNs B {
  color: #333333;
}
.cid-uicbk1ogNs H1 {
  color: #f4f8fa;
  text-align: left;
}
.cid-uicbk2fgSv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
.cid-uicbk2fgSv .mbr-text {
  color: #ffffff;
}
.cid-uicbk2AuCV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uicbk2AuCV .google-map {
  height: 25rem;
  position: relative;
}
.cid-uicbk2AuCV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uicbk2AuCV .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uicbk2AuCV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uicbk2AuCV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uicvj3bs4z {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uicvj3bs4z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uicvj3bs4z .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uicvj3bs4z .menu_box .navbar.opened,
  .cid-uicvj3bs4z .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uicvj3bs4z .navbar-dropdown {
  position: relative !important;
}
.cid-uicvj3bs4z .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uicvj3bs4z .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uicvj3bs4z .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uicvj3bs4z .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uicvj3bs4z .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uicvj3bs4z .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uicvj3bs4z .offcanvas-body .mbr-text,
  .cid-uicvj3bs4z .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uicvj3bs4z .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uicvj3bs4z .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uicvj3bs4z ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uicvj3bs4z .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uicvj3bs4z li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uicvj3bs4z .lg_brand {
    margin: 0 1rem;
  }
  .cid-uicvj3bs4z .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uicvj3bs4z .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .nav-item {
    margin: 0 !important;
  }
}
.cid-uicvj3bs4z .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uicvj3bs4z .nav-item .nav-link:hover,
.cid-uicvj3bs4z .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uicvj3bs4z .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uicvj3bs4z .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-uicvj3bs4z .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uicvj3bs4z .offcanvas_box {
    display: none;
  }
}
.cid-uicvj3bs4z .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uicvj3bs4z .container {
  display: flex;
  margin: auto;
}
.cid-uicvj3bs4z .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uicvj3bs4z .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uicvj3bs4z .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uicvj3bs4z .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .navbar-nav {
    margin: 0;
  }
}
.cid-uicvj3bs4z .dropdown-menu,
.cid-uicvj3bs4z .navbar.opened {
  background-color: false !important;
}
.cid-uicvj3bs4z .nav-item:focus,
.cid-uicvj3bs4z .nav-link:focus {
  outline: none;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uicvj3bs4z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uicvj3bs4z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uicvj3bs4z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uicvj3bs4z .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uicvj3bs4z .navbar.opened {
  transition: all 0.3s;
}
.cid-uicvj3bs4z .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uicvj3bs4z .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uicvj3bs4z .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uicvj3bs4z .navbar.collapsed {
  justify-content: center;
}
.cid-uicvj3bs4z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uicvj3bs4z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uicvj3bs4z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uicvj3bs4z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uicvj3bs4z .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uicvj3bs4z .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uicvj3bs4z .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uicvj3bs4z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uicvj3bs4z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uicvj3bs4z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uicvj3bs4z .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uicvj3bs4z .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uicvj3bs4z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uicvj3bs4z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uicvj3bs4z .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uicvj3bs4z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uicvj3bs4z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uicvj3bs4z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uicvj3bs4z .dropdown-item.active,
.cid-uicvj3bs4z .dropdown-item:active {
  background-color: transparent;
}
.cid-uicvj3bs4z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uicvj3bs4z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uicvj3bs4z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uicvj3bs4z ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uicvj3bs4z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uicvj3bs4z button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uicvj3bs4z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uicvj3bs4z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uicvj3bs4z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uicvj3bs4z .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-uicvj3bs4z .navbar {
    height: 70px;
  }
  .cid-uicvj3bs4z .navbar.opened {
    height: auto;
  }
  .cid-uicvj3bs4z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uicvj3bs4z .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uicvj3bs4z .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uicvj3bs4z .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uicvj3bs4z .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uicvj3bs4z .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uicvj3bs4z .text_widget {
  margin-bottom: 32px;
}
.cid-uicvj3bs4z .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uicvj3bs4z .text_widget a:hover,
.cid-uicvj3bs4z .text_widget a:focus {
  opacity: .8;
}
.cid-uicvj3bs4z .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navbar-caption {
  color: #0f1d07;
}
.cid-uicvj3bs4z .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uicvj3bs4z .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper {
    display: block;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uicvj3bs4z .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uicvj3bs4z .mbr-section-subtitle,
.cid-uicvj3bs4z .text_widget,
.cid-uicvj3bs4z .mbr-section-btn {
  text-align: center;
}
.cid-uicvj3bs4z a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uicOiYYagV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .content {
    text-align: center;
  }
  .cid-uicOiYYagV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uicOiYYagV .logo-subtitle {
  color: #8d97ad;
}
.cid-uicOiYYagV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uicOiYYagV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uicOiYYagV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uicOiYYagV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uicOiYYagV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uicOiYYagV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uicOiYYagV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uicOiYYagV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uicOiYYagV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uicOiYYagV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uicOiYYagV .list-item {
  display: flex;
}
.cid-uicOiYYagV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uicOiYYagV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uicOiYYagV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uicOiYYagV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uicOiYYagV .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uicOiYYagV P {
  color: #ffffff;
}
.cid-uicOiYYagV .copyright > p {
  text-align: left;
}
.cid-uyyoFuCiuR {
  background-color: transparent;
}
.cid-uyyoFuCiuR .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uyyoFuCiuR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uyyoFuCiuR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyyoFuCiuR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uyyoFuCiuR .menu_box .navbar.opened,
  .cid-uyyoFuCiuR .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uyyoFuCiuR .navbar-dropdown {
  position: relative !important;
}
.cid-uyyoFuCiuR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uyyoFuCiuR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uyyoFuCiuR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uyyoFuCiuR .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uyyoFuCiuR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uyyoFuCiuR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uyyoFuCiuR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uyyoFuCiuR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uyyoFuCiuR .offcanvas-body .mbr-text,
  .cid-uyyoFuCiuR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uyyoFuCiuR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uyyoFuCiuR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uyyoFuCiuR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uyyoFuCiuR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyoFuCiuR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uyyoFuCiuR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uyyoFuCiuR li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uyyoFuCiuR .lg_brand {
    margin: 0 1rem;
  }
  .cid-uyyoFuCiuR .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uyyoFuCiuR .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uyyoFuCiuR .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .nav-item {
    margin: 0 !important;
  }
}
.cid-uyyoFuCiuR .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uyyoFuCiuR .nav-item .nav-link:hover,
.cid-uyyoFuCiuR .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uyyoFuCiuR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uyyoFuCiuR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uyyoFuCiuR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyoFuCiuR .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-uyyoFuCiuR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uyyoFuCiuR .offcanvas_box {
    display: none;
  }
}
.cid-uyyoFuCiuR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uyyoFuCiuR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uyyoFuCiuR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uyyoFuCiuR .container {
  display: flex;
  margin: auto;
}
.cid-uyyoFuCiuR .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uyyoFuCiuR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uyyoFuCiuR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uyyoFuCiuR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uyyoFuCiuR .navbar-nav {
    margin: 0;
  }
}
.cid-uyyoFuCiuR .dropdown-menu,
.cid-uyyoFuCiuR .navbar.opened {
  background-color: false !important;
}
.cid-uyyoFuCiuR .nav-item:focus,
.cid-uyyoFuCiuR .nav-link:focus {
  outline: none;
}
.cid-uyyoFuCiuR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyyoFuCiuR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyyoFuCiuR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyyoFuCiuR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyyoFuCiuR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyyoFuCiuR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyyoFuCiuR .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uyyoFuCiuR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uyyoFuCiuR .navbar.opened {
  transition: all 0.3s;
}
.cid-uyyoFuCiuR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uyyoFuCiuR .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uyyoFuCiuR .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uyyoFuCiuR .navbar.collapsed {
  justify-content: center;
}
.cid-uyyoFuCiuR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyyoFuCiuR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uyyoFuCiuR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyyoFuCiuR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyyoFuCiuR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyyoFuCiuR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uyyoFuCiuR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uyyoFuCiuR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uyyoFuCiuR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uyyoFuCiuR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyyoFuCiuR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyyoFuCiuR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uyyoFuCiuR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyyoFuCiuR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uyyoFuCiuR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyyoFuCiuR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uyyoFuCiuR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uyyoFuCiuR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uyyoFuCiuR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uyyoFuCiuR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyyoFuCiuR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uyyoFuCiuR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyyoFuCiuR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyyoFuCiuR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyyoFuCiuR .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-uyyoFuCiuR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uyyoFuCiuR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyyoFuCiuR .dropdown-item.active,
.cid-uyyoFuCiuR .dropdown-item:active {
  background-color: transparent;
}
.cid-uyyoFuCiuR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uyyoFuCiuR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyyoFuCiuR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyyoFuCiuR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyyoFuCiuR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uyyoFuCiuR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyyoFuCiuR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uyyoFuCiuR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uyyoFuCiuR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyyoFuCiuR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyoFuCiuR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyoFuCiuR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyyoFuCiuR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyoFuCiuR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyyoFuCiuR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyyoFuCiuR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyoFuCiuR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uyyoFuCiuR .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-uyyoFuCiuR .navbar {
    height: 70px;
  }
  .cid-uyyoFuCiuR .navbar.opened {
    height: auto;
  }
  .cid-uyyoFuCiuR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyyoFuCiuR .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uyyoFuCiuR .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uyyoFuCiuR .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uyyoFuCiuR .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uyyoFuCiuR .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uyyoFuCiuR .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uyyoFuCiuR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uyyoFuCiuR .text_widget {
  margin-bottom: 32px;
}
.cid-uyyoFuCiuR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uyyoFuCiuR .text_widget a:hover,
.cid-uyyoFuCiuR .text_widget a:focus {
  opacity: .8;
}
.cid-uyyoFuCiuR .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyoFuCiuR .navbar-caption {
  color: #0f1d07;
}
.cid-uyyoFuCiuR .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyoFuCiuR .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyyoFuCiuR .navigation-wrapper {
    display: block;
  }
}
.cid-uyyoFuCiuR .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyoFuCiuR .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uyyoFuCiuR .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyoFuCiuR .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uyyoFuCiuR .mbr-section-subtitle,
.cid-uyyoFuCiuR .text_widget,
.cid-uyyoFuCiuR .mbr-section-btn {
  text-align: center;
}
.cid-uyyoFuCiuR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uyyoFvowaK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyoFvowaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFvowaK .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-uyyoFvowaK .container {
    padding: 0 30px;
  }
}
.cid-uyyoFvowaK .row .card {
  justify-content: center;
}
.cid-uyyoFvowaK .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uyyoFvowaK .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uyyoFvowaK .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uyyoFvowaK .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uyyoFvowaK .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uyyoFvowaK .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFvowaK .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uyyoFvowaK .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uyyoFvowaK .mbr-section-title {
  color: #ffffff;
}
.cid-uyyoFvowaK .mbr-section-subtitle {
  color: #f4f8fa;
}
.cid-uyyoFvMKbk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uyyoFvMKbk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFvMKbk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFvMKbk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uyyoFvMKbk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFvMKbk .container {
    padding: 0 30px;
  }
}
.cid-uyyoFvMKbk .row {
  justify-content: center;
}
.cid-uyyoFvMKbk .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFvMKbk .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uyyoFvMKbk .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFvMKbk .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uyyoFvMKbk .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uyyoFvMKbk .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uyyoFvMKbk .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uyyoFvMKbk .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #f4f8fa;
}
.cid-uyyoFvMKbk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uyyoFvMKbk .mbr-text {
  color: #144031;
}
.cid-uyyoFvMKbk .list,
.cid-uyyoFvMKbk .item-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-uyyoFw5tw7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #54173b;
}
.cid-uyyoFw5tw7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFw5tw7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFw5tw7 .row {
  justify-content: space-between;
}
.cid-uyyoFw5tw7 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyoFw5tw7 .content-wrapper {
    padding: 0;
  }
}
.cid-uyyoFw5tw7 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFw5tw7 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyoFw5tw7 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFw5tw7 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyoFw5tw7 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyoFw5tw7 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyoFw5tw7 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyoFw5tw7 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyoFw5tw7 .mbr-section-title {
  color: #000000;
}
.cid-uyyoFw5tw7 .mbr-desc {
  color: #000000;
}
.cid-uyyoFw5tw7 .mbr-text {
  color: #ffffff;
}
.cid-uyyoFwqY6P {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-uyyoFwqY6P .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uyyoFwqY6P .mbr-section-title {
  margin: 0;
}
.cid-uyyoFwqY6P .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyoFwqY6P .card-img {
  text-align: inherit;
}
.cid-uyyoFwqY6P .card-img span {
  background: linear-gradient(90deg, #000000, #54173b);
}
.cid-uyyoFwqY6P .mbr-text {
  color: #8d97ad;
}
.cid-uyyoFwqY6P .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uyyoFwqY6P .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyoFwqY6P .mbr-card-title DIV {
  text-align: center;
}
.cid-uyyoFwqY6P .mbr-card-title {
  text-align: center;
}
.cid-uyyoFx93Wc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyoFx93Wc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFx93Wc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFx93Wc .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyoFx93Wc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyoFx93Wc .container {
    padding: 0 24px;
  }
}
.cid-uyyoFx93Wc .row {
  justify-content: center;
}
.cid-uyyoFx93Wc .title-wrapper {
  padding-right: 48px;
  padding-right: 0;
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyoFx93Wc .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .title-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyoFx93Wc .title-wrapper {
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .title-wrapper {
    padding-left: 0;
  }
}
.cid-uyyoFx93Wc .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #f4f8fa;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #0b062f;
}
.cid-uyyoFx93Wc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uyyoFx93Wc .text-wrapper {
  padding-left: 48px;
  padding-left: 0;
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyoFx93Wc .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .text-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyoFx93Wc .text-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyoFx93Wc .text-wrapper {
    padding-right: 0;
  }
}
.cid-uyyoFx93Wc .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyyoFx93Wc .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uyyoFx93Wc .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uyyoFx93Wc .mbr-section-title {
  color: #ffffff;
}
.cid-uyyoFx93Wc .mbr-desc {
  color: #18212d;
}
.cid-uyyoFx93Wc .mbr-text {
  color: #ffffff;
}
.cid-uyyoFx93Wc .mbr-desc,
.cid-uyyoFx93Wc .desc-wrapper {
  text-align: center;
}
.cid-uyyoFxuMJw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uyyoFxuMJw .mbr-section-title {
  margin: 0;
}
.cid-uyyoFxuMJw .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uyyoFxuMJw .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uyyoFxuMJw .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uyyoFxuMJw .card1 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyoFxuMJw .card2 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyoFxuMJw .card3 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyoFxuMJw .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uyyoFxuMJw .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyoFxuMJw .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uyyoFxuMJw .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uyyoFxuMJw .card1 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyoFxuMJw .card2 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyoFxuMJw .card3 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyoFyaviS {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #54173b;
}
.cid-uyyoFyaviS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFyaviS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFyaviS .row {
  justify-content: space-between;
}
.cid-uyyoFyaviS .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyoFyaviS .content-wrapper {
    padding: 0;
  }
}
.cid-uyyoFyaviS .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFyaviS .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyoFyaviS .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyoFyaviS .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyoFyaviS .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyoFyaviS .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyoFyaviS .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyoFyaviS .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyoFyaviS .mbr-section-title {
  color: #000000;
}
.cid-uyyoFyaviS .mbr-desc {
  color: #000000;
}
.cid-uyyoFyaviS .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uyyoFyaviS .mbr-section-title,
.cid-uyyoFyaviS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyoFyuc8G {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #54173b, #f4f8fa);
}
.cid-uyyoFyuc8G .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-uyyoFyuc8G .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyoFyuc8G .card-wrap {
  background-color: #54173b;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uyyoFyuc8G .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uyyoFyuc8G .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uyyoFyuc8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFyuc8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFyuc8G .mbr-section-subtitle,
.cid-uyyoFyuc8G .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyoFyuc8G H1 {
  color: #ffffff;
}
.cid-uyyoFyRKzh {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #54173b;
}
.cid-uyyoFyRKzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFyRKzh .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uyyoFyRKzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFyRKzh h1 {
  max-width: 800px;
}
.cid-uyyoFyRKzh p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uyyoFyRKzh .btn:hover {
  transform: scale(1.1);
  background: #2bdc9d !important;
  border-color: #2bdc9d !important;
  color: #eff98b !important;
}
.cid-uyyoFyRKzh .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uyyoFyRKzh .btn div {
  overflow: hidden;
}
.cid-uyyoFyRKzh .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uyyoFyRKzh {
    align-items: center;
  }
  .cid-uyyoFyRKzh .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uyyoFyRKzh .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uyyoFyRKzh {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uyyoFyRKzh .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uyyoFyRKzh .content-wrap {
    width: 100%;
  }
}
.cid-uyyoFyRKzh .mbr-section-subtitle,
.cid-uyyoFyRKzh .line {
  color: #291f1e;
}
.cid-uyyoFyRKzh .mbr-text,
.cid-uyyoFyRKzh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uyyoFyRKzh .mbr-section-title {
  color: #ffffff;
}
.cid-uyyoFzlO71 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uyyoFzlO71 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uyyoFzlO71 .panel-group {
  width: 100%;
}
.cid-uyyoFzlO71 .panel-text,
.cid-uyyoFzlO71 .header-text,
.cid-uyyoFzlO71 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyoFzlO71 .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uyyoFzlO71 .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #54173b;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #54173b;
}
.cid-uyyoFzlO71 .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-uyyoFzlO71 .card .panel-body {
  background: #000000;
}
.cid-uyyoFzlO71 .sign {
  color: #232323;
}
.cid-uyyoFzlO71 .header-text {
  color: #ffffff;
  text-align: left;
}
.cid-uyyoFzlO71 .panel-text {
  color: #000000;
}
.cid-uyyoFzlO71 .mbr-section-title {
  text-align: left;
}
.cid-uyyoFzSzvL {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #54173b;
}
.cid-uyyoFzSzvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFzSzvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFzSzvL img {
  border-radius: 2rem;
}
.cid-uyyoFzSzvL .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uyyoFzSzvL .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #eff98b;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uyyoFzSzvL .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2bdc9d;
  font-size: 1.5rem;
}
.cid-uyyoFzSzvL .mbr-section-title {
  color: #ffffff;
}
.cid-uyyoFzSzvL .mbr-text,
.cid-uyyoFzSzvL .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyoFzSzvL .mbr-section-subtitle,
.cid-uyyoFzSzvL .align-wrapper {
  color: #04492e;
}
.cid-uyyoFAh32M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f8fa;
}
.cid-uyyoFAh32M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFAh32M .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-uyyoFAh32M .container {
    padding: 0 15px;
  }
}
.cid-uyyoFAh32M .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uyyoFAh32M .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uyyoFAh32M .content-wrapper {
    padding-right: 0;
  }
}
.cid-uyyoFAh32M .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uyyoFAh32M .content-wrap {
    display: block;
  }
}
.cid-uyyoFAh32M .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyoFAh32M .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyoFAh32M .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyoFAh32M .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyoFAh32M .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uyyoFAh32M .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uyyoFAh32M .mbr-section-title {
  color: #3f1819;
}
.cid-uyyoFAh32M .mbr-desc,
.cid-uyyoFAh32M .desc-wrapper {
  color: #3f1819;
}
.cid-uyApcIf5GK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uyApcIf5GK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyApcIf5GK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyApcIf5GK .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uyApcIf5GK .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uyApcIf5GK .container {
    padding: 0 26px;
  }
}
.cid-uyApcIf5GK .video-block .video-wrapper iframe {
  height: 450px !important;
  object-fit: cover;
}
.cid-uyApcIf5GK .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  font-size: 85px;
  text-shadow: none;
}
.cid-uyApcIf5GK .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uyApcIf5GK .mbr-section-title {
  color: #ffffff;
}
.cid-uyApcIf5GK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uyApcIf5GK .mbr-text {
  color: #cacaca;
}
.cid-uyyoFACPPI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #54173b;
}
.cid-uyyoFACPPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyoFACPPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyoFACPPI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uyyoFACPPI .mbr-text,
.cid-uyyoFACPPI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyoFACPPI b,
.cid-uyyoFACPPI strong {
  font-weight: 900;
}
.cid-uyyoFACPPI .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uyAp1rGVaP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uyAp1rGVaP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyAp1rGVaP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyAp1rGVaP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uyAp1rGVaP .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uyAp1rGVaP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyAp1rGVaP .container {
    padding: 0 16px;
  }
}
.cid-uyAp1rGVaP .row {
  justify-content: space-between;
}
.cid-uyAp1rGVaP .title-wrapper {
  position: sticky;
}
.cid-uyAp1rGVaP .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyAp1rGVaP .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uyAp1rGVaP .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyAp1rGVaP .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uyAp1rGVaP .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b);
  border-radius: 50%;
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uyAp1rGVaP .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uyAp1rGVaP .mbr-section-title {
  color: #080808;
}
.cid-uyAp1rGVaP .panel-title-edit {
  color: #080808;
}
.cid-uyAp1rGVaP .panel-text {
  color: #333333;
}
.cid-uyyoFAW3Cz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uyyoFAW3Cz .google-map {
  height: 25rem;
  position: relative;
}
.cid-uyyoFAW3Cz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uyyoFAW3Cz .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uyyoFAW3Cz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uyyoFAW3Cz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uyyoFBktwK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uyyoFBktwK .content {
    text-align: center;
  }
  .cid-uyyoFBktwK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uyyoFBktwK .logo-subtitle {
  color: #8d97ad;
}
.cid-uyyoFBktwK .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uyyoFBktwK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uyyoFBktwK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uyyoFBktwK .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uyyoFBktwK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uyyoFBktwK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uyyoFBktwK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uyyoFBktwK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uyyoFBktwK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyyoFBktwK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uyyoFBktwK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyyoFBktwK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyyoFBktwK .list-item {
  display: flex;
}
.cid-uyyoFBktwK .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uyyoFBktwK ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uyyoFBktwK ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uyyoFBktwK ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uyyoFBktwK .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uyyoFBktwK P {
  color: #ffffff;
}
.cid-uyyoFBktwK .copyright > p {
  text-align: left;
}
.cid-uyyt9fF9lr {
  background-color: transparent;
}
.cid-uyyt9fF9lr .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uyyt9fF9lr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uyyt9fF9lr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyyt9fF9lr .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uyyt9fF9lr .menu_box .navbar.opened,
  .cid-uyyt9fF9lr .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uyyt9fF9lr .navbar-dropdown {
  position: relative !important;
}
.cid-uyyt9fF9lr .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uyyt9fF9lr .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uyyt9fF9lr .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uyyt9fF9lr .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uyyt9fF9lr .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uyyt9fF9lr .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uyyt9fF9lr .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uyyt9fF9lr .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uyyt9fF9lr .offcanvas-body .mbr-text,
  .cid-uyyt9fF9lr .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uyyt9fF9lr .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uyyt9fF9lr .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uyyt9fF9lr ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uyyt9fF9lr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyt9fF9lr .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uyyt9fF9lr .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uyyt9fF9lr li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uyyt9fF9lr .lg_brand {
    margin: 0 1rem;
  }
  .cid-uyyt9fF9lr .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uyyt9fF9lr .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uyyt9fF9lr .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .nav-item {
    margin: 0 !important;
  }
}
.cid-uyyt9fF9lr .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uyyt9fF9lr .nav-item .nav-link:hover,
.cid-uyyt9fF9lr .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uyyt9fF9lr .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uyyt9fF9lr .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uyyt9fF9lr .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyt9fF9lr .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-uyyt9fF9lr .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uyyt9fF9lr .offcanvas_box {
    display: none;
  }
}
.cid-uyyt9fF9lr .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uyyt9fF9lr .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uyyt9fF9lr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uyyt9fF9lr .container {
  display: flex;
  margin: auto;
}
.cid-uyyt9fF9lr .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uyyt9fF9lr .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uyyt9fF9lr .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uyyt9fF9lr .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uyyt9fF9lr .navbar-nav {
    margin: 0;
  }
}
.cid-uyyt9fF9lr .dropdown-menu,
.cid-uyyt9fF9lr .navbar.opened {
  background-color: false !important;
}
.cid-uyyt9fF9lr .nav-item:focus,
.cid-uyyt9fF9lr .nav-link:focus {
  outline: none;
}
.cid-uyyt9fF9lr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyyt9fF9lr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyyt9fF9lr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyyt9fF9lr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyyt9fF9lr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyyt9fF9lr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyyt9fF9lr .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uyyt9fF9lr .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uyyt9fF9lr .navbar.opened {
  transition: all 0.3s;
}
.cid-uyyt9fF9lr .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uyyt9fF9lr .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uyyt9fF9lr .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uyyt9fF9lr .navbar.collapsed {
  justify-content: center;
}
.cid-uyyt9fF9lr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyyt9fF9lr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uyyt9fF9lr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyyt9fF9lr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyyt9fF9lr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyyt9fF9lr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uyyt9fF9lr .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uyyt9fF9lr .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uyyt9fF9lr .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uyyt9fF9lr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyyt9fF9lr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyyt9fF9lr .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uyyt9fF9lr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyyt9fF9lr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uyyt9fF9lr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyyt9fF9lr .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uyyt9fF9lr .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uyyt9fF9lr .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uyyt9fF9lr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uyyt9fF9lr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyyt9fF9lr .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uyyt9fF9lr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyyt9fF9lr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyyt9fF9lr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyyt9fF9lr .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-uyyt9fF9lr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uyyt9fF9lr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyyt9fF9lr .dropdown-item.active,
.cid-uyyt9fF9lr .dropdown-item:active {
  background-color: transparent;
}
.cid-uyyt9fF9lr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uyyt9fF9lr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyyt9fF9lr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyyt9fF9lr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyyt9fF9lr ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uyyt9fF9lr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyyt9fF9lr button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uyyt9fF9lr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uyyt9fF9lr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyyt9fF9lr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyt9fF9lr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyt9fF9lr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyyt9fF9lr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyt9fF9lr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyyt9fF9lr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyyt9fF9lr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyt9fF9lr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uyyt9fF9lr .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-uyyt9fF9lr .navbar {
    height: 70px;
  }
  .cid-uyyt9fF9lr .navbar.opened {
    height: auto;
  }
  .cid-uyyt9fF9lr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyyt9fF9lr .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uyyt9fF9lr .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uyyt9fF9lr .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uyyt9fF9lr .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uyyt9fF9lr .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uyyt9fF9lr .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uyyt9fF9lr .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uyyt9fF9lr .text_widget {
  margin-bottom: 32px;
}
.cid-uyyt9fF9lr .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uyyt9fF9lr .text_widget a:hover,
.cid-uyyt9fF9lr .text_widget a:focus {
  opacity: .8;
}
.cid-uyyt9fF9lr .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyt9fF9lr .navbar-caption {
  color: #0f1d07;
}
.cid-uyyt9fF9lr .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyt9fF9lr .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyyt9fF9lr .navigation-wrapper {
    display: block;
  }
}
.cid-uyyt9fF9lr .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyt9fF9lr .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uyyt9fF9lr .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyt9fF9lr .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uyyt9fF9lr .mbr-section-subtitle,
.cid-uyyt9fF9lr .text_widget,
.cid-uyyt9fF9lr .mbr-section-btn {
  text-align: center;
}
.cid-uyyt9fF9lr a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uyyt9gv1DO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyt9gv1DO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9gv1DO .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-uyyt9gv1DO .container {
    padding: 0 30px;
  }
}
.cid-uyyt9gv1DO .row .card {
  justify-content: center;
}
.cid-uyyt9gv1DO .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uyyt9gv1DO .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uyyt9gv1DO .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uyyt9gv1DO .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uyyt9gv1DO .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uyyt9gv1DO .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9gv1DO .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uyyt9gv1DO .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uyyt9gv1DO .mbr-section-title {
  color: #ffffff;
}
.cid-uyyt9gv1DO .mbr-section-subtitle {
  color: #f4f8fa;
}
.cid-uyyt9gOy7o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uyyt9gOy7o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9gOy7o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9gOy7o .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uyyt9gOy7o .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9gOy7o .container {
    padding: 0 30px;
  }
}
.cid-uyyt9gOy7o .row {
  justify-content: center;
}
.cid-uyyt9gOy7o .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9gOy7o .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uyyt9gOy7o .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9gOy7o .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uyyt9gOy7o .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uyyt9gOy7o .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uyyt9gOy7o .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uyyt9gOy7o .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #f4f8fa;
}
.cid-uyyt9gOy7o .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uyyt9gOy7o .mbr-text {
  color: #144031;
}
.cid-uyyt9gOy7o .list,
.cid-uyyt9gOy7o .item-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-uyyt9h7G51 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #54173b;
}
.cid-uyyt9h7G51 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9h7G51 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9h7G51 .row {
  justify-content: space-between;
}
.cid-uyyt9h7G51 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyt9h7G51 .content-wrapper {
    padding: 0;
  }
}
.cid-uyyt9h7G51 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9h7G51 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyt9h7G51 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9h7G51 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyt9h7G51 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyt9h7G51 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyt9h7G51 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyt9h7G51 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyt9h7G51 .mbr-section-title {
  color: #000000;
}
.cid-uyyt9h7G51 .mbr-desc {
  color: #000000;
}
.cid-uyyt9h7G51 .mbr-text {
  color: #ffffff;
}
.cid-uyyt9ht9vy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-uyyt9ht9vy .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uyyt9ht9vy .mbr-section-title {
  margin: 0;
}
.cid-uyyt9ht9vy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyt9ht9vy .card-img {
  text-align: inherit;
}
.cid-uyyt9ht9vy .card-img span {
  background: linear-gradient(90deg, #000000, #54173b);
}
.cid-uyyt9ht9vy .mbr-text {
  color: #8d97ad;
}
.cid-uyyt9ht9vy .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uyyt9ht9vy .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyt9ht9vy .mbr-card-title DIV {
  text-align: center;
}
.cid-uyyt9ht9vy .mbr-card-title {
  text-align: center;
}
.cid-uyyt9i4jBb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyt9i4jBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9i4jBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9i4jBb .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyt9i4jBb .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyt9i4jBb .container {
    padding: 0 24px;
  }
}
.cid-uyyt9i4jBb .row {
  justify-content: center;
}
.cid-uyyt9i4jBb .title-wrapper {
  padding-right: 48px;
  padding-right: 0;
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyt9i4jBb .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .title-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyt9i4jBb .title-wrapper {
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .title-wrapper {
    padding-left: 0;
  }
}
.cid-uyyt9i4jBb .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #f4f8fa;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #0b062f;
}
.cid-uyyt9i4jBb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uyyt9i4jBb .text-wrapper {
  padding-left: 48px;
  padding-left: 0;
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyt9i4jBb .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .text-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyt9i4jBb .text-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyt9i4jBb .text-wrapper {
    padding-right: 0;
  }
}
.cid-uyyt9i4jBb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyyt9i4jBb .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uyyt9i4jBb .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uyyt9i4jBb .mbr-section-title {
  color: #ffffff;
}
.cid-uyyt9i4jBb .mbr-desc {
  color: #18212d;
}
.cid-uyyt9i4jBb .mbr-text {
  color: #ffffff;
}
.cid-uyyt9i4jBb .mbr-desc,
.cid-uyyt9i4jBb .desc-wrapper {
  text-align: center;
}
.cid-uyyt9iurb6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uyyt9iurb6 .mbr-section-title {
  margin: 0;
}
.cid-uyyt9iurb6 .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uyyt9iurb6 .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uyyt9iurb6 .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uyyt9iurb6 .card1 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyt9iurb6 .card2 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyt9iurb6 .card3 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyt9iurb6 .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uyyt9iurb6 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyt9iurb6 .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uyyt9iurb6 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uyyt9iurb6 .card1 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyt9iurb6 .card2 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyt9iurb6 .card3 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyt9jaEpb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #54173b;
}
.cid-uyyt9jaEpb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9jaEpb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9jaEpb .row {
  justify-content: space-between;
}
.cid-uyyt9jaEpb .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyt9jaEpb .content-wrapper {
    padding: 0;
  }
}
.cid-uyyt9jaEpb .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9jaEpb .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyt9jaEpb .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyt9jaEpb .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyt9jaEpb .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyt9jaEpb .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyt9jaEpb .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyt9jaEpb .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyt9jaEpb .mbr-section-title {
  color: #000000;
}
.cid-uyyt9jaEpb .mbr-desc {
  color: #000000;
}
.cid-uyyt9jaEpb .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uyyt9jaEpb .mbr-section-title,
.cid-uyyt9jaEpb .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyt9jCqLy {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #54173b, #f4f8fa);
}
.cid-uyyt9jCqLy .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-uyyt9jCqLy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyt9jCqLy .card-wrap {
  background-color: #54173b;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uyyt9jCqLy .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uyyt9jCqLy .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uyyt9jCqLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9jCqLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9jCqLy .mbr-section-subtitle,
.cid-uyyt9jCqLy .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyt9jCqLy H1 {
  color: #ffffff;
}
.cid-uyyt9khmWI {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #54173b;
}
.cid-uyyt9khmWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9khmWI .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uyyt9khmWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9khmWI h1 {
  max-width: 800px;
}
.cid-uyyt9khmWI p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uyyt9khmWI .btn:hover {
  transform: scale(1.1);
  background: #2bdc9d !important;
  border-color: #2bdc9d !important;
  color: #eff98b !important;
}
.cid-uyyt9khmWI .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uyyt9khmWI .btn div {
  overflow: hidden;
}
.cid-uyyt9khmWI .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uyyt9khmWI {
    align-items: center;
  }
  .cid-uyyt9khmWI .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uyyt9khmWI .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uyyt9khmWI {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uyyt9khmWI .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uyyt9khmWI .content-wrap {
    width: 100%;
  }
}
.cid-uyyt9khmWI .mbr-section-subtitle,
.cid-uyyt9khmWI .line {
  color: #291f1e;
}
.cid-uyyt9khmWI .mbr-text,
.cid-uyyt9khmWI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uyyt9khmWI .mbr-section-title {
  color: #ffffff;
}
.cid-uyyt9kLiHh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uyyt9kLiHh .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uyyt9kLiHh .panel-group {
  width: 100%;
}
.cid-uyyt9kLiHh .panel-text,
.cid-uyyt9kLiHh .header-text,
.cid-uyyt9kLiHh .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyt9kLiHh .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uyyt9kLiHh .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #54173b;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #54173b;
}
.cid-uyyt9kLiHh .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-uyyt9kLiHh .card .panel-body {
  background: #000000;
}
.cid-uyyt9kLiHh .sign {
  color: #232323;
}
.cid-uyyt9kLiHh .header-text {
  color: #ffffff;
  text-align: left;
}
.cid-uyyt9kLiHh .panel-text {
  color: #000000;
}
.cid-uyyt9kLiHh .mbr-section-title {
  text-align: left;
}
.cid-uyyt9lo02B {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #54173b;
}
.cid-uyyt9lo02B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9lo02B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9lo02B img {
  border-radius: 2rem;
}
.cid-uyyt9lo02B .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uyyt9lo02B .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #eff98b;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uyyt9lo02B .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2bdc9d;
  font-size: 1.5rem;
}
.cid-uyyt9lo02B .mbr-section-title {
  color: #ffffff;
}
.cid-uyyt9lo02B .mbr-text,
.cid-uyyt9lo02B .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyt9lo02B .mbr-section-subtitle,
.cid-uyyt9lo02B .align-wrapper {
  color: #04492e;
}
.cid-uyyt9lXg67 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f8fa;
}
.cid-uyyt9lXg67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9lXg67 .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-uyyt9lXg67 .container {
    padding: 0 15px;
  }
}
.cid-uyyt9lXg67 .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uyyt9lXg67 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uyyt9lXg67 .content-wrapper {
    padding-right: 0;
  }
}
.cid-uyyt9lXg67 .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uyyt9lXg67 .content-wrap {
    display: block;
  }
}
.cid-uyyt9lXg67 .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyt9lXg67 .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyt9lXg67 .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyt9lXg67 .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyt9lXg67 .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uyyt9lXg67 .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uyyt9lXg67 .mbr-section-title {
  color: #3f1819;
}
.cid-uyyt9lXg67 .mbr-desc,
.cid-uyyt9lXg67 .desc-wrapper {
  color: #3f1819;
}
.cid-uyyt9mh3nC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #54173b;
}
.cid-uyyt9mh3nC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyt9mh3nC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyt9mh3nC .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uyyt9mh3nC .mbr-text,
.cid-uyyt9mh3nC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyt9mh3nC b,
.cid-uyyt9mh3nC strong {
  font-weight: 900;
}
.cid-uyyt9mh3nC .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uyAqcCwdvT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uyAqcCwdvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyAqcCwdvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyAqcCwdvT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uyAqcCwdvT .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uyAqcCwdvT .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyAqcCwdvT .container {
    padding: 0 16px;
  }
}
.cid-uyAqcCwdvT .row {
  justify-content: space-between;
}
.cid-uyAqcCwdvT .title-wrapper {
  position: sticky;
}
.cid-uyAqcCwdvT .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyAqcCwdvT .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uyAqcCwdvT .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyAqcCwdvT .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uyAqcCwdvT .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b);
  border-radius: 50%;
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uyAqcCwdvT .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uyAqcCwdvT .mbr-section-title {
  color: #080808;
}
.cid-uyAqcCwdvT .panel-title-edit {
  color: #080808;
}
.cid-uyAqcCwdvT .panel-text {
  color: #333333;
}
.cid-uyyt9mRoDz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uyyt9mRoDz .google-map {
  height: 25rem;
  position: relative;
}
.cid-uyyt9mRoDz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uyyt9mRoDz .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uyyt9mRoDz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uyyt9mRoDz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uyyt9ndd6j {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uyyt9ndd6j .content {
    text-align: center;
  }
  .cid-uyyt9ndd6j .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uyyt9ndd6j .logo-subtitle {
  color: #8d97ad;
}
.cid-uyyt9ndd6j .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uyyt9ndd6j .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uyyt9ndd6j .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uyyt9ndd6j .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uyyt9ndd6j .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uyyt9ndd6j .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uyyt9ndd6j .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uyyt9ndd6j .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uyyt9ndd6j .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyyt9ndd6j .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uyyt9ndd6j .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyyt9ndd6j .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyyt9ndd6j .list-item {
  display: flex;
}
.cid-uyyt9ndd6j .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uyyt9ndd6j ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uyyt9ndd6j ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uyyt9ndd6j ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uyyt9ndd6j .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uyyt9ndd6j P {
  color: #ffffff;
}
.cid-uyyt9ndd6j .copyright > p {
  text-align: left;
}
.cid-uyyKGWSw4C {
  background-color: transparent;
}
.cid-uyyKGWSw4C .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uyyKGWSw4C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uyyKGWSw4C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyyKGWSw4C .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uyyKGWSw4C .menu_box .navbar.opened,
  .cid-uyyKGWSw4C .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uyyKGWSw4C .navbar-dropdown {
  position: relative !important;
}
.cid-uyyKGWSw4C .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uyyKGWSw4C .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uyyKGWSw4C .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uyyKGWSw4C .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #d8e7ee;
  }
  .cid-uyyKGWSw4C .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uyyKGWSw4C .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uyyKGWSw4C .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uyyKGWSw4C .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uyyKGWSw4C .offcanvas-body .mbr-text,
  .cid-uyyKGWSw4C .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uyyKGWSw4C .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0f1d07;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uyyKGWSw4C .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uyyKGWSw4C ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uyyKGWSw4C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyKGWSw4C .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uyyKGWSw4C .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uyyKGWSw4C li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uyyKGWSw4C .lg_brand {
    margin: 0 1rem;
  }
  .cid-uyyKGWSw4C .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uyyKGWSw4C .nav-item {
  margin: 0 5px;
}
@media (min-width: 1200px) {
  .cid-uyyKGWSw4C .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .nav-item {
    margin: 0 !important;
  }
}
.cid-uyyKGWSw4C .nav-item .nav-link {
  transition: all 0.3s ease-in-out;
  border-radius: 100vw;
}
.cid-uyyKGWSw4C .nav-item .nav-link:hover,
.cid-uyyKGWSw4C .nav-item .nav-link:focus {
  background-color: #0f1d07 !important;
  color: #90f188 !important;
}
.cid-uyyKGWSw4C .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uyyKGWSw4C .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uyyKGWSw4C .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uyyKGWSw4C .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-uyyKGWSw4C .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uyyKGWSw4C .offcanvas_box {
    display: none;
  }
}
.cid-uyyKGWSw4C .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uyyKGWSw4C .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uyyKGWSw4C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uyyKGWSw4C .container {
  display: flex;
  margin: auto;
}
.cid-uyyKGWSw4C .iconfont-wrapper {
  color: #0f1d07;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uyyKGWSw4C .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uyyKGWSw4C .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uyyKGWSw4C .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uyyKGWSw4C .navbar-nav {
    margin: 0;
  }
}
.cid-uyyKGWSw4C .dropdown-menu,
.cid-uyyKGWSw4C .navbar.opened {
  background-color: false !important;
}
.cid-uyyKGWSw4C .nav-item:focus,
.cid-uyyKGWSw4C .nav-link:focus {
  outline: none;
}
.cid-uyyKGWSw4C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyyKGWSw4C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyyKGWSw4C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyyKGWSw4C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyyKGWSw4C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyyKGWSw4C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyyKGWSw4C .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uyyKGWSw4C .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uyyKGWSw4C .navbar.opened {
  transition: all 0.3s;
}
.cid-uyyKGWSw4C .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uyyKGWSw4C .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uyyKGWSw4C .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uyyKGWSw4C .navbar.collapsed {
  justify-content: center;
}
.cid-uyyKGWSw4C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyyKGWSw4C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uyyKGWSw4C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyyKGWSw4C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyyKGWSw4C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyyKGWSw4C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uyyKGWSw4C .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uyyKGWSw4C .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uyyKGWSw4C .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uyyKGWSw4C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyyKGWSw4C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyyKGWSw4C .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uyyKGWSw4C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyyKGWSw4C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uyyKGWSw4C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyyKGWSw4C .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uyyKGWSw4C .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uyyKGWSw4C .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uyyKGWSw4C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uyyKGWSw4C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyyKGWSw4C .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uyyKGWSw4C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyyKGWSw4C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyyKGWSw4C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyyKGWSw4C .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-uyyKGWSw4C .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uyyKGWSw4C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyyKGWSw4C .dropdown-item.active,
.cid-uyyKGWSw4C .dropdown-item:active {
  background-color: transparent;
}
.cid-uyyKGWSw4C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-uyyKGWSw4C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyyKGWSw4C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyyKGWSw4C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyyKGWSw4C ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uyyKGWSw4C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyyKGWSw4C button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #90f188;
}
.cid-uyyKGWSw4C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0f1d07;
}
.cid-uyyKGWSw4C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyyKGWSw4C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyKGWSw4C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyyKGWSw4C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyyKGWSw4C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyKGWSw4C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyyKGWSw4C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyyKGWSw4C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyyKGWSw4C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uyyKGWSw4C .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-uyyKGWSw4C .navbar {
    height: 70px;
  }
  .cid-uyyKGWSw4C .navbar.opened {
    height: auto;
  }
  .cid-uyyKGWSw4C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyyKGWSw4C .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uyyKGWSw4C .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uyyKGWSw4C .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uyyKGWSw4C .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uyyKGWSw4C .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
}
.cid-uyyKGWSw4C .navbar-caption:hover {
  color: #eff98b;
}
@media (min-width: 992px) {
  .cid-uyyKGWSw4C .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uyyKGWSw4C .text_widget {
  margin-bottom: 32px;
}
.cid-uyyKGWSw4C .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uyyKGWSw4C .text_widget a:hover,
.cid-uyyKGWSw4C .text_widget a:focus {
  opacity: .8;
}
.cid-uyyKGWSw4C .mbr-section-subtitle {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyKGWSw4C .navbar-caption {
  color: #0f1d07;
}
.cid-uyyKGWSw4C .mbr-text {
  color: #0f1d07;
  text-align: center;
}
.cid-uyyKGWSw4C .navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyyKGWSw4C .navigation-wrapper {
    display: block;
  }
}
.cid-uyyKGWSw4C .navigation-wrapper .navbar-nav.nav-dropdown {
  position: relative;
  display: -webkit-inline-flex;
  width: fit-content;
  padding: 7px;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyKGWSw4C .navigation-wrapper .navbar-nav.nav-dropdown {
    padding: 0;
    border-radius: 0 !important;
  }
}
.cid-uyyKGWSw4C .navigation-wrapper .navbar-nav.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  border-radius: 100vw !important;
}
@media (max-width: 992px) {
  .cid-uyyKGWSw4C .navigation-wrapper .navbar-nav.nav-dropdown::before {
    display: none;
  }
}
.cid-uyyKGWSw4C .mbr-section-subtitle,
.cid-uyyKGWSw4C .text_widget,
.cid-uyyKGWSw4C .mbr-section-btn {
  text-align: center;
}
.cid-uyyKGWSw4C a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uyyKGXGABV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyKGXGABV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKGXGABV .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-uyyKGXGABV .container {
    padding: 0 30px;
  }
}
.cid-uyyKGXGABV .row .card {
  justify-content: center;
}
.cid-uyyKGXGABV .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uyyKGXGABV .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uyyKGXGABV .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uyyKGXGABV .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uyyKGXGABV .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uyyKGXGABV .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGXGABV .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uyyKGXGABV .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uyyKGXGABV .mbr-section-title {
  color: #ffffff;
}
.cid-uyyKGXGABV .mbr-section-subtitle {
  color: #f4f8fa;
}
.cid-uyyKGY2CBX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uyyKGY2CBX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKGY2CBX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKGY2CBX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uyyKGY2CBX .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGY2CBX .container {
    padding: 0 30px;
  }
}
.cid-uyyKGY2CBX .row {
  justify-content: center;
}
.cid-uyyKGY2CBX .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKGY2CBX .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uyyKGY2CBX .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKGY2CBX .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uyyKGY2CBX .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uyyKGY2CBX .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uyyKGY2CBX .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uyyKGY2CBX .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #f4f8fa;
}
.cid-uyyKGY2CBX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uyyKGY2CBX .mbr-text {
  color: #144031;
}
.cid-uyyKGY2CBX .list,
.cid-uyyKGY2CBX .item-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-uyyKGYmWkg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #54173b;
}
.cid-uyyKGYmWkg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKGYmWkg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKGYmWkg .row {
  justify-content: space-between;
}
.cid-uyyKGYmWkg .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyKGYmWkg .content-wrapper {
    padding: 0;
  }
}
.cid-uyyKGYmWkg .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKGYmWkg .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyKGYmWkg .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKGYmWkg .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyKGYmWkg .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyKGYmWkg .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyKGYmWkg .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyKGYmWkg .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyKGYmWkg .mbr-section-title {
  color: #000000;
}
.cid-uyyKGYmWkg .mbr-desc {
  color: #000000;
}
.cid-uyyKGYmWkg .mbr-text {
  color: #ffffff;
}
.cid-uyyKGYKy0S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-uyyKGYKy0S .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uyyKGYKy0S .mbr-section-title {
  margin: 0;
}
.cid-uyyKGYKy0S .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyKGYKy0S .card-img {
  text-align: inherit;
}
.cid-uyyKGYKy0S .card-img span {
  background: linear-gradient(90deg, #000000, #54173b);
}
.cid-uyyKGYKy0S .mbr-text {
  color: #8d97ad;
}
.cid-uyyKGYKy0S .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uyyKGYKy0S .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyKGYKy0S .mbr-card-title DIV {
  text-align: center;
}
.cid-uyyKGYKy0S .mbr-card-title {
  text-align: center;
}
.cid-uyyKGZnyNV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #54173b;
}
.cid-uyyKGZnyNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKGZnyNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKGZnyNV .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyKGZnyNV .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyyKGZnyNV .container {
    padding: 0 24px;
  }
}
.cid-uyyKGZnyNV .row {
  justify-content: center;
}
.cid-uyyKGZnyNV .title-wrapper {
  padding-right: 48px;
  padding-right: 0;
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyKGZnyNV .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .title-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyKGZnyNV .title-wrapper {
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .title-wrapper {
    padding-left: 0;
  }
}
.cid-uyyKGZnyNV .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #f4f8fa;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #0b062f;
}
.cid-uyyKGZnyNV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uyyKGZnyNV .text-wrapper {
  padding-left: 48px;
  padding-left: 0;
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uyyKGZnyNV .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .text-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uyyKGZnyNV .text-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyyKGZnyNV .text-wrapper {
    padding-right: 0;
  }
}
.cid-uyyKGZnyNV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyyKGZnyNV .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uyyKGZnyNV .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uyyKGZnyNV .mbr-section-title {
  color: #ffffff;
}
.cid-uyyKGZnyNV .mbr-desc {
  color: #18212d;
}
.cid-uyyKGZnyNV .mbr-text {
  color: #ffffff;
}
.cid-uyyKGZnyNV .mbr-desc,
.cid-uyyKGZnyNV .desc-wrapper {
  text-align: center;
}
.cid-uyyKGZJ4hT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uyyKGZJ4hT .mbr-section-title {
  margin: 0;
}
.cid-uyyKGZJ4hT .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uyyKGZJ4hT .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uyyKGZJ4hT .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uyyKGZJ4hT .card1 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyKGZJ4hT .card2 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyKGZJ4hT .card3 {
  background: linear-gradient(45deg, #eff98b, #54173b);
}
.cid-uyyKGZJ4hT .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uyyKGZJ4hT .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uyyKGZJ4hT .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uyyKGZJ4hT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uyyKGZJ4hT .card1 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyKGZJ4hT .card2 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyKGZJ4hT .card3 > .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-uyyKH0mqZe {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #54173b;
}
.cid-uyyKH0mqZe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH0mqZe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKH0mqZe .row {
  justify-content: space-between;
}
.cid-uyyKH0mqZe .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uyyKH0mqZe .content-wrapper {
    padding: 0;
  }
}
.cid-uyyKH0mqZe .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKH0mqZe .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uyyKH0mqZe .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uyyKH0mqZe .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uyyKH0mqZe .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uyyKH0mqZe .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uyyKH0mqZe .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uyyKH0mqZe .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uyyKH0mqZe .mbr-section-title {
  color: #000000;
}
.cid-uyyKH0mqZe .mbr-desc {
  color: #000000;
}
.cid-uyyKH0mqZe .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uyyKH0mqZe .mbr-section-title,
.cid-uyyKH0mqZe .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyKH0S3BS {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #54173b, #f4f8fa);
}
.cid-uyyKH0S3BS .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-uyyKH0S3BS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyKH0S3BS .card-wrap {
  background-color: #54173b;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uyyKH0S3BS .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uyyKH0S3BS .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uyyKH0S3BS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH0S3BS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKH0S3BS .mbr-section-subtitle,
.cid-uyyKH0S3BS .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyKH0S3BS H1 {
  color: #ffffff;
}
.cid-uyyKH1gO5n {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #54173b;
}
.cid-uyyKH1gO5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH1gO5n .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uyyKH1gO5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKH1gO5n h1 {
  max-width: 800px;
}
.cid-uyyKH1gO5n p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-uyyKH1gO5n .btn:hover {
  transform: scale(1.1);
  background: #2bdc9d !important;
  border-color: #2bdc9d !important;
  color: #eff98b !important;
}
.cid-uyyKH1gO5n .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-uyyKH1gO5n .btn div {
  overflow: hidden;
}
.cid-uyyKH1gO5n .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-uyyKH1gO5n {
    align-items: center;
  }
  .cid-uyyKH1gO5n .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uyyKH1gO5n .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uyyKH1gO5n {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uyyKH1gO5n .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uyyKH1gO5n .content-wrap {
    width: 100%;
  }
}
.cid-uyyKH1gO5n .mbr-section-subtitle,
.cid-uyyKH1gO5n .line {
  color: #291f1e;
}
.cid-uyyKH1gO5n .mbr-text,
.cid-uyyKH1gO5n .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uyyKH1gO5n .mbr-section-title {
  color: #ffffff;
}
.cid-uyyKH1BetZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uyyKH1BetZ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uyyKH1BetZ .panel-group {
  width: 100%;
}
.cid-uyyKH1BetZ .panel-text,
.cid-uyyKH1BetZ .header-text,
.cid-uyyKH1BetZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uyyKH1BetZ .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uyyKH1BetZ .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #54173b;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #54173b;
}
.cid-uyyKH1BetZ .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-uyyKH1BetZ .card .panel-body {
  background: #000000;
}
.cid-uyyKH1BetZ .sign {
  color: #232323;
}
.cid-uyyKH1BetZ .header-text {
  color: #ffffff;
  text-align: left;
}
.cid-uyyKH1BetZ .panel-text {
  color: #000000;
}
.cid-uyyKH1BetZ .mbr-section-title {
  text-align: left;
}
.cid-uyyKH2hGXh {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #54173b;
}
.cid-uyyKH2hGXh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH2hGXh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKH2hGXh img {
  border-radius: 2rem;
}
.cid-uyyKH2hGXh .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uyyKH2hGXh .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #eff98b;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uyyKH2hGXh .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2bdc9d;
  font-size: 1.5rem;
}
.cid-uyyKH2hGXh .mbr-section-title {
  color: #ffffff;
}
.cid-uyyKH2hGXh .mbr-text,
.cid-uyyKH2hGXh .mbr-section-btn {
  color: #ffffff;
}
.cid-uyyKH2hGXh .mbr-section-subtitle,
.cid-uyyKH2hGXh .align-wrapper {
  color: #04492e;
}
.cid-uyyKH2DgC5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f8fa;
}
.cid-uyyKH2DgC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH2DgC5 .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-uyyKH2DgC5 .container {
    padding: 0 15px;
  }
}
.cid-uyyKH2DgC5 .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uyyKH2DgC5 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uyyKH2DgC5 .content-wrapper {
    padding-right: 0;
  }
}
.cid-uyyKH2DgC5 .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uyyKH2DgC5 .content-wrap {
    display: block;
  }
}
.cid-uyyKH2DgC5 .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyKH2DgC5 .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyKH2DgC5 .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyyKH2DgC5 .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uyyKH2DgC5 .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uyyKH2DgC5 .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uyyKH2DgC5 .mbr-section-title {
  color: #3f1819;
}
.cid-uyyKH2DgC5 .mbr-desc,
.cid-uyyKH2DgC5 .desc-wrapper {
  color: #3f1819;
}
.cid-uyyKH37kSs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #54173b;
}
.cid-uyyKH37kSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyKH37kSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyKH37kSs .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uyyKH37kSs .mbr-text,
.cid-uyyKH37kSs .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uyyKH37kSs b,
.cid-uyyKH37kSs strong {
  font-weight: 900;
}
.cid-uyyKH37kSs .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uyArNsrRva {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uyArNsrRva .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyArNsrRva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyArNsrRva .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uyArNsrRva .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uyArNsrRva .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyArNsrRva .container {
    padding: 0 16px;
  }
}
.cid-uyArNsrRva .row {
  justify-content: space-between;
}
.cid-uyArNsrRva .title-wrapper {
  position: sticky;
}
.cid-uyArNsrRva .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyArNsrRva .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uyArNsrRva .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uyArNsrRva .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uyArNsrRva .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uyArNsrRva .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uyArNsrRva .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uyArNsrRva .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uyArNsrRva .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uyArNsrRva .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uyArNsrRva .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #a61a3d 34%, #7179ef 67%, #54173b);
  border-radius: 50%;
}
.cid-uyArNsrRva .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uyArNsrRva .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uyArNsrRva .mbr-section-title {
  color: #080808;
}
.cid-uyArNsrRva .panel-title-edit {
  color: #080808;
}
.cid-uyArNsrRva .panel-text {
  color: #333333;
}
.cid-uyyKH3zGjp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uyyKH3zGjp .google-map {
  height: 25rem;
  position: relative;
}
.cid-uyyKH3zGjp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uyyKH3zGjp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uyyKH3zGjp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uyyKH3zGjp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uyyKH3Xild {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #54173b;
}
@media (max-width: 767px) {
  .cid-uyyKH3Xild .content {
    text-align: center;
  }
  .cid-uyyKH3Xild .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uyyKH3Xild .logo-subtitle {
  color: #8d97ad;
}
.cid-uyyKH3Xild .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uyyKH3Xild .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uyyKH3Xild .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uyyKH3Xild .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-uyyKH3Xild .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uyyKH3Xild .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-uyyKH3Xild .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uyyKH3Xild .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uyyKH3Xild .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyyKH3Xild .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uyyKH3Xild .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyyKH3Xild .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyyKH3Xild .list-item {
  display: flex;
}
.cid-uyyKH3Xild .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-uyyKH3Xild ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uyyKH3Xild ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-uyyKH3Xild ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-uyyKH3Xild .column-title {
  text-align: left;
  color: #ffffff;
}
.cid-uyyKH3Xild P {
  color: #ffffff;
}
.cid-uyyKH3Xild .copyright > p {
  text-align: left;
}
