.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #912a72 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #912a72 !important;
  border-color: #912a72 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #4e173d !important;
  border-color: #4e173d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4e173d !important;
  border-color: #4e173d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #912a72;
  color: #912a72;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4e173d !important;
  background-color: transparent!important;
  border-color: #4e173d !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #912a72 !important;
  border-color: #912a72 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #912a72 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #421334 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #912a72;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #912a72;
  border-color: #912a72;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #912a72;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d367b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #912a72 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #912a72;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #912a72;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #912a72;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #912a72;
  border-bottom-color: #912a72;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #912a72 !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23912a72' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tbEKnLTzp1 {
  z-index: 1000;
  width: 100%;
}
.cid-tbEKnLTzp1 nav.navbar {
  position: fixed;
}
.cid-tbEKnLTzp1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKnLTzp1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbEKnLTzp1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbEKnLTzp1 .dropdown-item:hover,
.cid-tbEKnLTzp1 .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbEKnLTzp1 .dropdown-item:hover span {
  color: white;
}
.cid-tbEKnLTzp1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbEKnLTzp1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbEKnLTzp1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbEKnLTzp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbEKnLTzp1 .nav-link {
  position: relative;
}
.cid-tbEKnLTzp1 .container {
  display: flex;
  margin: auto;
}
.cid-tbEKnLTzp1 .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbEKnLTzp1 .dropdown-menu,
.cid-tbEKnLTzp1 .navbar.opened {
  background: #ffffff !important;
}
.cid-tbEKnLTzp1 .nav-item:focus,
.cid-tbEKnLTzp1 .nav-link:focus {
  outline: none;
}
.cid-tbEKnLTzp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbEKnLTzp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbEKnLTzp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbEKnLTzp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKnLTzp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbEKnLTzp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbEKnLTzp1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbEKnLTzp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tbEKnLTzp1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbEKnLTzp1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tbEKnLTzp1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbEKnLTzp1 .navbar.collapsed {
  justify-content: center;
}
.cid-tbEKnLTzp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbEKnLTzp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbEKnLTzp1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbEKnLTzp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbEKnLTzp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbEKnLTzp1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbEKnLTzp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbEKnLTzp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbEKnLTzp1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbEKnLTzp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbEKnLTzp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbEKnLTzp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbEKnLTzp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbEKnLTzp1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbEKnLTzp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbEKnLTzp1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbEKnLTzp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbEKnLTzp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbEKnLTzp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbEKnLTzp1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbEKnLTzp1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbEKnLTzp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbEKnLTzp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbEKnLTzp1 .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-tbEKnLTzp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbEKnLTzp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbEKnLTzp1 .dropdown-item.active,
.cid-tbEKnLTzp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tbEKnLTzp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbEKnLTzp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbEKnLTzp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbEKnLTzp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbEKnLTzp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbEKnLTzp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbEKnLTzp1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbEKnLTzp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbEKnLTzp1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbEKnLTzp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbEKnLTzp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbEKnLTzp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKnLTzp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKnLTzp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbEKnLTzp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKnLTzp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbEKnLTzp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbEKnLTzp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKnLTzp1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbEKnLTzp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbEKnLTzp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbEKnLTzp1 .navbar {
    height: 70px;
  }
  .cid-tbEKnLTzp1 .navbar.opened {
    height: auto;
  }
  .cid-tbEKnLTzp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbEKo9In64 {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tbEKo9In64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEKo9In64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEKo9In64 .mbr-section-title {
  color: #912a72;
}
.cid-tbJbr2PlJJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tbJbr2PlJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbJbr2PlJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbJbr2PlJJ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tbJbr2PlJJ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tbJbr2PlJJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tbJbr2PlJJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tbJbr2PlJJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbJbr2PlJJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tbJbr2PlJJ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tbJbr2PlJJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tbJbr2PlJJ .mbr-text,
.cid-tbJbr2PlJJ .mbr-section-btn {
  color: #a74e4e;
}
.cid-tbJbr2PlJJ .card-title {
  color: #912a72;
}
.cid-tbJh7Vi072 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fef7f2;
}
@media (min-width: 1400px) {
  .cid-tbJh7Vi072 .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-tbJh7Vi072 .top {
    margin-top: 10rem;
  }
}
.cid-tbJh7Vi072 .mbr-section-title {
  text-align: left;
  font-weight: 600;
  line-height: 1.2;
  color: #912a72;
}
.cid-tbJh7Vi072 .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #a74e4e;
}
.cid-tbJh7Vi072 .index {
  z-index: 3;
}
.cid-tbJh7Vi072 ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-tbJh7Vi072 li {
  margin-bottom: 47px;
  position: relative;
}
.cid-tbJh7Vi072 ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #d5c1f4;
  border: 2px solid #000000;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-tbJh7Vi072 .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-tbJh7Vi072 .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-tbJh7Vi072 .wrap {
    top: 10%;
  }
}
.cid-tbJh7Vi072 .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-tbJh7Vi072 .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-tbJh7Vi072 .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-tbJh7Vi072 .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-tbJh7Vi072 .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-tbJh7Vi072 .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-tbJh7Vi072 .mbr-text UL {
  text-align: left;
}
.cid-tbJlPSD8oZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-tbJlPSD8oZ .item-wrapper {
  width: 100%;
}
.cid-tbJlPSD8oZ .left-side {
  text-align: left;
}
.cid-tbJlPSD8oZ .row {
  align-items: center;
  padding: 0px;
  margin: 0;
}
.cid-tbJlPSD8oZ .mbr-section-title {
  margin: 0 0 25px;
  color: #912a72;
}
.cid-tbJlPSD8oZ .desc {
  padding: 0 0px 20px;
  color: #333333;
}
.cid-tbJlPSD8oZ .col-auto {
  display: inline-block;
}
.cid-tbJlPSD8oZ .mbr-section-subtitle {
  color: #1b745e;
  text-align: left;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-tbJlPSD8oZ .right-side {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .cid-tbJlPSD8oZ .left-side {
    padding: 25px 15px;
  }
  .cid-tbJlPSD8oZ li:before {
    left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tbJlPSD8oZ .right-side {
    min-height: initial !important;
  }
  .cid-tbJlPSD8oZ .row {
    flex-direction: column-reverse;
  }
}
.cid-tbJlPSD8oZ .logo {
  display: inline-block;
  height: 30px;
  width: auto;
  padding-right: 20px;
  margin-bottom: 15px;
}
.cid-tbJlPSD8oZ .mbr-text {
  padding-bottom: 10px;
}
.cid-tbJlPSD8oZ .card-heading {
  color: #000000;
  position: relative;
  font-weight: 600;
}
.cid-tbJlPSD8oZ ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0 !important;
  counter-reset: myCounter;
}
.cid-tbJlPSD8oZ li {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  position: relative;
  transition: all .5s;
  border-radius: 25px;
}
.cid-tbJlPSD8oZ li:before {
  padding-right: 20px;
  counter-increment: myCounter;
  content: counter(myCounter);
  transition: all .2s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 75px;
  color: #912a72;
  font-size: 27px;
  font-weight: 800;
}
.cid-tbJlPSD8oZ img {
  border-radius: 25px;
}
.cid-tbJlPSD8oZ .b {
  padding: 1rem 2rem;
  font-weight: 600;
  color: #000000;
  background-color: #c0f22c;
  text-align: center;
  position: absolute;
  right: 30px;
  font-size: 16px;
  border-radius: 100px;
  opacity: 0;
  transition: all .5s !important;
}
.cid-tbJlPSD8oZ li:hover {
  background-color: #ffffff;
  transform: translateY(-7px);
}
.cid-tbJlPSD8oZ li:hover .b {
  opacity: 1;
}
.cid-tbJlPSD8oZ .mbr-section-title,
.cid-tbJlPSD8oZ .mbr-section-btn {
  text-align: center;
}
.cid-tbJlPSD8oZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: absolute !important;
}
.cid-tbJlPSD8oZ .list .card-heading {
  color: #a74e4e;
}
.cid-tbJhmEygRp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2eae2;
}
.cid-tbJhmEygRp .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbJhmEygRp .mbr-text {
  color: #777777;
}
.cid-tbJhmEygRp ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJhmEygRp ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJhmEygRp ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbJhmEygRp .mbr-list {
  color: #777777;
}
.cid-tbJhmEygRp .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbEKlxd1DI {
  z-index: 1000;
  width: 100%;
}
.cid-tbEKlxd1DI nav.navbar {
  position: fixed;
}
.cid-tbEKlxd1DI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKlxd1DI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbEKlxd1DI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbEKlxd1DI .dropdown-item:hover,
.cid-tbEKlxd1DI .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbEKlxd1DI .dropdown-item:hover span {
  color: white;
}
.cid-tbEKlxd1DI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbEKlxd1DI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbEKlxd1DI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbEKlxd1DI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbEKlxd1DI .nav-link {
  position: relative;
}
.cid-tbEKlxd1DI .container {
  display: flex;
  margin: auto;
}
.cid-tbEKlxd1DI .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbEKlxd1DI .dropdown-menu,
.cid-tbEKlxd1DI .navbar.opened {
  background: #ffffff !important;
}
.cid-tbEKlxd1DI .nav-item:focus,
.cid-tbEKlxd1DI .nav-link:focus {
  outline: none;
}
.cid-tbEKlxd1DI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbEKlxd1DI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbEKlxd1DI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbEKlxd1DI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKlxd1DI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbEKlxd1DI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbEKlxd1DI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbEKlxd1DI .navbar.opened {
  transition: all 0.3s;
}
.cid-tbEKlxd1DI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbEKlxd1DI .navbar .navbar-logo img {
  width: auto;
}
.cid-tbEKlxd1DI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbEKlxd1DI .navbar.collapsed {
  justify-content: center;
}
.cid-tbEKlxd1DI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbEKlxd1DI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbEKlxd1DI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbEKlxd1DI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbEKlxd1DI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbEKlxd1DI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbEKlxd1DI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbEKlxd1DI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbEKlxd1DI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbEKlxd1DI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbEKlxd1DI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbEKlxd1DI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbEKlxd1DI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbEKlxd1DI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbEKlxd1DI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbEKlxd1DI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbEKlxd1DI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbEKlxd1DI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbEKlxd1DI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbEKlxd1DI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbEKlxd1DI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbEKlxd1DI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbEKlxd1DI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbEKlxd1DI .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-tbEKlxd1DI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbEKlxd1DI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbEKlxd1DI .dropdown-item.active,
.cid-tbEKlxd1DI .dropdown-item:active {
  background-color: transparent;
}
.cid-tbEKlxd1DI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbEKlxd1DI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbEKlxd1DI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbEKlxd1DI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbEKlxd1DI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbEKlxd1DI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbEKlxd1DI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbEKlxd1DI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbEKlxd1DI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbEKlxd1DI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbEKlxd1DI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbEKlxd1DI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKlxd1DI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKlxd1DI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbEKlxd1DI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKlxd1DI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbEKlxd1DI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbEKlxd1DI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKlxd1DI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbEKlxd1DI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbEKlxd1DI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbEKlxd1DI .navbar {
    height: 70px;
  }
  .cid-tbEKlxd1DI .navbar.opened {
    height: auto;
  }
  .cid-tbEKlxd1DI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbEKlVxRp5 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
.cid-tbEKlVxRp5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEKlVxRp5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEKlVxRp5 .mbr-section-title {
  color: #912a72;
}
.cid-tbJpaBOpML {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tbJpaBOpML .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tbJpaBOpML img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tbJpaBOpML .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tbJpaBOpML .mbr-section-title {
  color: #912a72;
}
.cid-tbJpaBOpML .mbr-text {
  color: #a74e4e;
}
.cid-tbJpaBOpML .mbr-description {
  color: #6c7577;
}
.cid-tbJOIPeS7W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1282.jpg");
}
.cid-tbJOIPeS7W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbJOIPeS7W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbJOIPeS7W .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tbJOIPeS7W .card {
    margin-bottom: 2rem!important;
  }
  .cid-tbJOIPeS7W .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tbJOIPeS7W .link-wrap {
    align-items: center;
  }
}
.cid-tbJOIPeS7W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tbJOIPeS7W .card-title,
.cid-tbJOIPeS7W .card-box {
  color: #912a72;
}
.cid-tbJRwH5hvi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tbJRwH5hvi .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tbJRwH5hvi .container {
  padding: 0 5%;
}
.cid-tbJRwH5hvi .item-title-name {
  margin-right: 15px;
}
.cid-tbJRwH5hvi .item:focus,
.cid-tbJRwH5hvi span:focus {
  outline: none;
}
.cid-tbJRwH5hvi .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tbJRwH5hvi .item-menu-overlay {
  opacity: 0 !important;
  display: none !important;
}
.cid-tbJRwH5hvi .items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tbJRwH5hvi .items:nth-child(2) {
  padding-top: 6rem;
}
@media (max-width: 992px) {
  .cid-tbJRwH5hvi .items:nth-child(2) {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-tbJRwH5hvi .items:nth-child(3) {
    flex-direction: row;
  }
  .cid-tbJRwH5hvi .items:nth-child(3) .item-wrapper:first-child {
    margin-right: 12px;
  }
  .cid-tbJRwH5hvi .items:nth-child(3) .item-wrapper:last-child {
    margin-left: 12px;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .cid-tbJRwH5hvi .items:nth-child(3) .item-wrapper:first-child {
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .cid-tbJRwH5hvi .items:nth-child(3) .item-wrapper:last-child {
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 768px) {
  .cid-tbJRwH5hvi .items:nth-child(3) {
    flex-direction: column;
  }
}
.cid-tbJRwH5hvi .mbr-section-head {
  margin-bottom: 4.5rem;
}
.cid-tbJRwH5hvi .item-wrapper {
  position: relative;
  border-radius: 15px;
  display: flex;
  flex-flow: column nowrap;
  max-width: 360px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cid-tbJRwH5hvi .item-wrapper {
    margin: 0 auto 2rem;
  }
}
.cid-tbJRwH5hvi .item-title-wrapper {
  max-height: 95px;
  padding: 1.3rem 2.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #a74e4e;
}
@media (max-width: 1200px) {
  .cid-tbJRwH5hvi .item-title-wrapper {
    padding: 1.3rem 0.6rem;
  }
}
@media (max-width: 768px) {
  .cid-tbJRwH5hvi .item-title-wrapper {
    padding: 1.3rem 2.3rem;
  }
}
@media (max-width: 450px) {
  .cid-tbJRwH5hvi .item-title-wrapper {
    padding: 1rem;
  }
}
.cid-tbJRwH5hvi .item-title-wrapper img {
  max-width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #f0f4ff;
  margin-right: 15px;
}
.cid-tbJRwH5hvi .item-title-wrapper .item-title {
  margin: 0;
}
.cid-tbJRwH5hvi .item-title-wrapper .item-desc {
  margin: 0;
}
.cid-tbJRwH5hvi .item-title-wrapper .item-title-span {
  width: 50px;
  display: flex;
  justify-content: space-around;
}
.cid-tbJRwH5hvi .item-title-wrapper span {
  display: block;
  font-size: 2rem;
  margin-top: -1rem;
}
.cid-tbJRwH5hvi .item-title-wrapper a {
  height: 100%;
  padding: 1.3rem 0;
}
.cid-tbJRwH5hvi .item-title-name {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tbJRwH5hvi .item-content {
  background: #f0f4ff;
  padding: 2.5rem 3rem;
}
.cid-tbJRwH5hvi .mbr-section-title {
  margin-bottom: 1rem;
  color: #912a72;
}
.cid-tbJRwH5hvi .mbr-section-subtitle {
  color: #3a3e5e;
  text-align: center;
}
.cid-tbJRwH5hvi .item-title,
.cid-tbJRwH5hvi .mbr-iconfont {
  color: #FFFFFF;
}
.cid-tbJRwH5hvi .item-desc {
  color: #FFFFFF;
}
.cid-tbJRwH5hvi .item-text {
  color: #3a3e5e;
}
.cid-tbJTayDTLA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dcbfbf;
}
.cid-tbJTayDTLA .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbJTayDTLA .mbr-text {
  color: #777777;
}
.cid-tbJTayDTLA ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJTayDTLA ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJTayDTLA ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbJTayDTLA .mbr-list {
  color: #777777;
}
.cid-tbJTayDTLA .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbEKjamasz {
  z-index: 1000;
  width: 100%;
}
.cid-tbEKjamasz nav.navbar {
  position: fixed;
}
.cid-tbEKjamasz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKjamasz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbEKjamasz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbEKjamasz .dropdown-item:hover,
.cid-tbEKjamasz .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbEKjamasz .dropdown-item:hover span {
  color: white;
}
.cid-tbEKjamasz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbEKjamasz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbEKjamasz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbEKjamasz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbEKjamasz .nav-link {
  position: relative;
}
.cid-tbEKjamasz .container {
  display: flex;
  margin: auto;
}
.cid-tbEKjamasz .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbEKjamasz .dropdown-menu,
.cid-tbEKjamasz .navbar.opened {
  background: #ffffff !important;
}
.cid-tbEKjamasz .nav-item:focus,
.cid-tbEKjamasz .nav-link:focus {
  outline: none;
}
.cid-tbEKjamasz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbEKjamasz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbEKjamasz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbEKjamasz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKjamasz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbEKjamasz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbEKjamasz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbEKjamasz .navbar.opened {
  transition: all 0.3s;
}
.cid-tbEKjamasz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbEKjamasz .navbar .navbar-logo img {
  width: auto;
}
.cid-tbEKjamasz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbEKjamasz .navbar.collapsed {
  justify-content: center;
}
.cid-tbEKjamasz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbEKjamasz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbEKjamasz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbEKjamasz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbEKjamasz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbEKjamasz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbEKjamasz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbEKjamasz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbEKjamasz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbEKjamasz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbEKjamasz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbEKjamasz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbEKjamasz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbEKjamasz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbEKjamasz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbEKjamasz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbEKjamasz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbEKjamasz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbEKjamasz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbEKjamasz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbEKjamasz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbEKjamasz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbEKjamasz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbEKjamasz .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-tbEKjamasz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbEKjamasz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbEKjamasz .dropdown-item.active,
.cid-tbEKjamasz .dropdown-item:active {
  background-color: transparent;
}
.cid-tbEKjamasz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbEKjamasz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbEKjamasz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbEKjamasz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbEKjamasz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbEKjamasz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbEKjamasz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbEKjamasz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbEKjamasz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbEKjamasz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbEKjamasz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbEKjamasz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKjamasz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKjamasz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbEKjamasz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKjamasz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbEKjamasz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbEKjamasz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKjamasz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbEKjamasz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbEKjamasz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbEKjamasz .navbar {
    height: 70px;
  }
  .cid-tbEKjamasz .navbar.opened {
    height: auto;
  }
  .cid-tbEKjamasz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbEKjB8Ggs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tbEKjB8Ggs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEKjB8Ggs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEKjB8Ggs .mbr-section-title {
  color: #912a72;
}
.cid-tbJV7cuinr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tbJV7cuinr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbJV7cuinr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbJV7cuinr .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tbJV7cuinr .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tbJV7cuinr .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tbJV7cuinr .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tbJV7cuinr .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbJV7cuinr .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tbJV7cuinr .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tbJV7cuinr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tbJV7cuinr .mbr-text,
.cid-tbJV7cuinr .mbr-section-btn {
  color: #a74e4e;
}
.cid-tbJV7cuinr .card-title {
  color: #912a72;
}
.cid-tbJWOEakKE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dcbfbf;
}
@media (min-width: 1500px) {
  .cid-tbJWOEakKE .container {
    max-width: 1400px;
  }
}
@media (min-width: 767px) {
  .cid-tbJWOEakKE .container-fluid {
    padding: 0 3rem;
  }
}
.cid-tbJWOEakKE .card1 {
  background: #ffb5b5;
}
.cid-tbJWOEakKE .card2 {
  background: #bed3f9;
}
.cid-tbJWOEakKE .card3 {
  background: #bbbbbb;
}
.cid-tbJWOEakKE .card4 {
  background: #f2eae2;
}
.cid-tbJWOEakKE .card5 {
  background: #bed3f9;
}
.cid-tbJWOEakKE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #082c4e;
  margin-bottom: 2rem;
}
.cid-tbJWOEakKE .card-wrapper {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cid-tbJWOEakKE .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tbJWOEakKE .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-tbJWOEakKE .col-lg-3 {
    max-width: 20%;
  }
}
.cid-tbJWOEakKE .mbr-section-title {
  color: #912a72;
}
.cid-tbJWOEakKE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tbJWOEakKE .card-title,
.cid-tbJWOEakKE .iconfont-wrapper {
  color: #082c4e;
}
.cid-tbJWOEakKE .card-text {
  color: #082c4e;
}
.cid-tbJZC5SNAx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2eae2;
}
.cid-tbJZC5SNAx .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbJZC5SNAx .mbr-text {
  color: #777777;
}
.cid-tbJZC5SNAx ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJZC5SNAx ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbJZC5SNAx ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbJZC5SNAx .mbr-list {
  color: #777777;
}
.cid-tbJZC5SNAx .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbEKhx7ODz {
  z-index: 1000;
  width: 100%;
}
.cid-tbEKhx7ODz nav.navbar {
  position: fixed;
}
.cid-tbEKhx7ODz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKhx7ODz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbEKhx7ODz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbEKhx7ODz .dropdown-item:hover,
.cid-tbEKhx7ODz .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbEKhx7ODz .dropdown-item:hover span {
  color: white;
}
.cid-tbEKhx7ODz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbEKhx7ODz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbEKhx7ODz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbEKhx7ODz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbEKhx7ODz .nav-link {
  position: relative;
}
.cid-tbEKhx7ODz .container {
  display: flex;
  margin: auto;
}
.cid-tbEKhx7ODz .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbEKhx7ODz .dropdown-menu,
.cid-tbEKhx7ODz .navbar.opened {
  background: #ffffff !important;
}
.cid-tbEKhx7ODz .nav-item:focus,
.cid-tbEKhx7ODz .nav-link:focus {
  outline: none;
}
.cid-tbEKhx7ODz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbEKhx7ODz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbEKhx7ODz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbEKhx7ODz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEKhx7ODz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbEKhx7ODz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbEKhx7ODz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbEKhx7ODz .navbar.opened {
  transition: all 0.3s;
}
.cid-tbEKhx7ODz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbEKhx7ODz .navbar .navbar-logo img {
  width: auto;
}
.cid-tbEKhx7ODz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbEKhx7ODz .navbar.collapsed {
  justify-content: center;
}
.cid-tbEKhx7ODz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbEKhx7ODz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbEKhx7ODz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbEKhx7ODz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbEKhx7ODz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbEKhx7ODz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbEKhx7ODz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbEKhx7ODz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbEKhx7ODz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbEKhx7ODz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbEKhx7ODz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbEKhx7ODz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbEKhx7ODz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbEKhx7ODz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbEKhx7ODz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbEKhx7ODz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbEKhx7ODz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbEKhx7ODz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbEKhx7ODz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbEKhx7ODz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbEKhx7ODz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbEKhx7ODz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbEKhx7ODz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbEKhx7ODz .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-tbEKhx7ODz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbEKhx7ODz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbEKhx7ODz .dropdown-item.active,
.cid-tbEKhx7ODz .dropdown-item:active {
  background-color: transparent;
}
.cid-tbEKhx7ODz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbEKhx7ODz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbEKhx7ODz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbEKhx7ODz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbEKhx7ODz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbEKhx7ODz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbEKhx7ODz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbEKhx7ODz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbEKhx7ODz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbEKhx7ODz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbEKhx7ODz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbEKhx7ODz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKhx7ODz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEKhx7ODz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbEKhx7ODz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKhx7ODz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbEKhx7ODz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbEKhx7ODz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEKhx7ODz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbEKhx7ODz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbEKhx7ODz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbEKhx7ODz .navbar {
    height: 70px;
  }
  .cid-tbEKhx7ODz .navbar.opened {
    height: auto;
  }
  .cid-tbEKhx7ODz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbEKhYZ5eJ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tbEKhYZ5eJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEKhYZ5eJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEKhYZ5eJ .mbr-section-title {
  color: #912a72;
}
.cid-tbUpQ32QGK {
  background-image: url("../../../assets/images/mbr-1-1920x1281.jpg");
}
.cid-tbUpQ32QGK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUpQ32QGK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUpQ32QGK .mbr-text,
.cid-tbUpQ32QGK .mbr-section-btn {
  color: #000000;
}
.cid-tbUpQ32QGK .mbr-section-title {
  color: #912a72;
}
.cid-tbUyyY04WL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tbUyyY04WL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUyyY04WL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUyyY04WL .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tbUyyY04WL .container {
    max-width: 1400px;
  }
}
.cid-tbUyyY04WL .card {
  margin: auto;
}
.cid-tbUyyY04WL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #a74e4e;
  margin-bottom: 2rem;
}
.cid-tbUyyY04WL .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tbUyyY04WL .row {
  justify-content: center;
}
.cid-tbUyyY04WL H3 {
  color: #912a72;
}
.cid-tbUscIoqjA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2eae2;
}
.cid-tbUscIoqjA .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbUscIoqjA .mbr-text {
  color: #777777;
}
.cid-tbUscIoqjA ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUscIoqjA ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUscIoqjA ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbUscIoqjA .mbr-list {
  color: #777777;
}
.cid-tbUscIoqjA .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbELlGZheS {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-tbELlGZheS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbELlGZheS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbELlGZheS .mbr-section-title {
  color: #912a72;
}
.cid-tbELlhA3as {
  z-index: 1000;
  width: 100%;
}
.cid-tbELlhA3as nav.navbar {
  position: fixed;
}
.cid-tbELlhA3as .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELlhA3as .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbELlhA3as .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbELlhA3as .dropdown-item:hover,
.cid-tbELlhA3as .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbELlhA3as .dropdown-item:hover span {
  color: white;
}
.cid-tbELlhA3as .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbELlhA3as .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbELlhA3as .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbELlhA3as .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbELlhA3as .nav-link {
  position: relative;
}
.cid-tbELlhA3as .container {
  display: flex;
  margin: auto;
}
.cid-tbELlhA3as .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbELlhA3as .dropdown-menu,
.cid-tbELlhA3as .navbar.opened {
  background: #ffffff !important;
}
.cid-tbELlhA3as .nav-item:focus,
.cid-tbELlhA3as .nav-link:focus {
  outline: none;
}
.cid-tbELlhA3as .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbELlhA3as .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbELlhA3as .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbELlhA3as .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELlhA3as .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbELlhA3as .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbELlhA3as .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbELlhA3as .navbar.opened {
  transition: all 0.3s;
}
.cid-tbELlhA3as .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbELlhA3as .navbar .navbar-logo img {
  width: auto;
}
.cid-tbELlhA3as .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbELlhA3as .navbar.collapsed {
  justify-content: center;
}
.cid-tbELlhA3as .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbELlhA3as .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbELlhA3as .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbELlhA3as .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbELlhA3as .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbELlhA3as .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbELlhA3as .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbELlhA3as .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbELlhA3as .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbELlhA3as .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbELlhA3as .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbELlhA3as .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbELlhA3as .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbELlhA3as .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbELlhA3as .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbELlhA3as .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbELlhA3as .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbELlhA3as .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbELlhA3as .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbELlhA3as .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbELlhA3as .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbELlhA3as .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbELlhA3as .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbELlhA3as .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-tbELlhA3as .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbELlhA3as .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbELlhA3as .dropdown-item.active,
.cid-tbELlhA3as .dropdown-item:active {
  background-color: transparent;
}
.cid-tbELlhA3as .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbELlhA3as .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbELlhA3as .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbELlhA3as .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbELlhA3as .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbELlhA3as .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbELlhA3as ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbELlhA3as .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbELlhA3as button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbELlhA3as button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbELlhA3as button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbELlhA3as button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELlhA3as button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELlhA3as button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbELlhA3as nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELlhA3as nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbELlhA3as nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbELlhA3as nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELlhA3as .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbELlhA3as a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbELlhA3as .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbELlhA3as .navbar {
    height: 70px;
  }
  .cid-tbELlhA3as .navbar.opened {
    height: auto;
  }
  .cid-tbELlhA3as .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbELlspKY2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tbELlspKY2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tbELlspKY2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbELlspKY2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tbELlspKY2 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tbELlspKY2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbELlspKY2 .mbr-text,
.cid-tbELlspKY2 .mbr-section-btn {
  color: #a74e4e;
}
.cid-tbELlspKY2 .mbr-section-title {
  color: #912a72;
}
.cid-tbUCbZvUJ2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2eae2;
}
.cid-tbUCbZvUJ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUCbZvUJ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUCbZvUJ2 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tbUCbZvUJ2 .container {
    max-width: 1400px;
  }
}
.cid-tbUCbZvUJ2 .card {
  margin: auto;
}
.cid-tbUCbZvUJ2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tbUCbZvUJ2 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tbUCbZvUJ2 .row {
  justify-content: center;
}
.cid-tbUCbZvUJ2 H3 {
  color: #912a72;
}
.cid-tbUCvCn9eo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tbUCvCn9eo .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbUCvCn9eo .mbr-text {
  color: #777777;
}
.cid-tbUCvCn9eo ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUCvCn9eo ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUCvCn9eo ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbUCvCn9eo .mbr-list {
  color: #777777;
}
.cid-tbUCvCn9eo .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbELv6I15n {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-tbELv6I15n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbELv6I15n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbELv6I15n .mbr-section-title {
  color: #912a72;
}
.cid-tbELuIjRe5 {
  z-index: 1000;
  width: 100%;
}
.cid-tbELuIjRe5 nav.navbar {
  position: fixed;
}
.cid-tbELuIjRe5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELuIjRe5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbELuIjRe5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbELuIjRe5 .dropdown-item:hover,
.cid-tbELuIjRe5 .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbELuIjRe5 .dropdown-item:hover span {
  color: white;
}
.cid-tbELuIjRe5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbELuIjRe5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbELuIjRe5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbELuIjRe5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbELuIjRe5 .nav-link {
  position: relative;
}
.cid-tbELuIjRe5 .container {
  display: flex;
  margin: auto;
}
.cid-tbELuIjRe5 .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbELuIjRe5 .dropdown-menu,
.cid-tbELuIjRe5 .navbar.opened {
  background: #ffffff !important;
}
.cid-tbELuIjRe5 .nav-item:focus,
.cid-tbELuIjRe5 .nav-link:focus {
  outline: none;
}
.cid-tbELuIjRe5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbELuIjRe5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbELuIjRe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbELuIjRe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELuIjRe5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbELuIjRe5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbELuIjRe5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbELuIjRe5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tbELuIjRe5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbELuIjRe5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tbELuIjRe5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbELuIjRe5 .navbar.collapsed {
  justify-content: center;
}
.cid-tbELuIjRe5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbELuIjRe5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbELuIjRe5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbELuIjRe5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbELuIjRe5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbELuIjRe5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbELuIjRe5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbELuIjRe5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbELuIjRe5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbELuIjRe5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbELuIjRe5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbELuIjRe5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbELuIjRe5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbELuIjRe5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbELuIjRe5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbELuIjRe5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbELuIjRe5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbELuIjRe5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbELuIjRe5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbELuIjRe5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbELuIjRe5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbELuIjRe5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbELuIjRe5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbELuIjRe5 .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-tbELuIjRe5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbELuIjRe5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbELuIjRe5 .dropdown-item.active,
.cid-tbELuIjRe5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tbELuIjRe5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbELuIjRe5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbELuIjRe5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbELuIjRe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbELuIjRe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbELuIjRe5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbELuIjRe5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbELuIjRe5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbELuIjRe5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbELuIjRe5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbELuIjRe5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbELuIjRe5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELuIjRe5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELuIjRe5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbELuIjRe5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELuIjRe5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbELuIjRe5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbELuIjRe5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELuIjRe5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbELuIjRe5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbELuIjRe5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbELuIjRe5 .navbar {
    height: 70px;
  }
  .cid-tbELuIjRe5 .navbar.opened {
    height: auto;
  }
  .cid-tbELuIjRe5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbELuUeaou {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tbELuUeaou .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tbELuUeaou .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbELuUeaou .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tbELuUeaou .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tbELuUeaou .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbELuUeaou .mbr-text,
.cid-tbELuUeaou .mbr-section-btn {
  color: #a74e4e;
}
.cid-tbELuUeaou .mbr-section-title {
  color: #912a72;
}
.cid-tbUEzz53O6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2eae2;
}
.cid-tbUEzz53O6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUEzz53O6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUEzz53O6 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tbUEzz53O6 .container {
    max-width: 1400px;
  }
}
.cid-tbUEzz53O6 .card {
  margin: auto;
}
.cid-tbUEzz53O6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tbUEzz53O6 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tbUEzz53O6 .row {
  justify-content: center;
}
.cid-tbUEzz53O6 H3 {
  color: #912a72;
}
.cid-tbUEAytulc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tbUEAytulc .mbr-section-subtitle {
  color: #14191e;
}
.cid-tbUEAytulc .mbr-text {
  color: #777777;
}
.cid-tbUEAytulc ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUEAytulc ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-tbUEAytulc ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  width: 25px;
  height: 25px;
}
.cid-tbUEAytulc .mbr-list {
  color: #777777;
}
.cid-tbUEAytulc .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbELK0wCib {
  z-index: 1000;
  width: 100%;
}
.cid-tbELK0wCib nav.navbar {
  position: fixed;
}
.cid-tbELK0wCib .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELK0wCib .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbELK0wCib .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbELK0wCib .dropdown-item:hover,
.cid-tbELK0wCib .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbELK0wCib .dropdown-item:hover span {
  color: white;
}
.cid-tbELK0wCib .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbELK0wCib .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbELK0wCib .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbELK0wCib .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbELK0wCib .nav-link {
  position: relative;
}
.cid-tbELK0wCib .container {
  display: flex;
  margin: auto;
}
.cid-tbELK0wCib .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbELK0wCib .dropdown-menu,
.cid-tbELK0wCib .navbar.opened {
  background: #ffffff !important;
}
.cid-tbELK0wCib .nav-item:focus,
.cid-tbELK0wCib .nav-link:focus {
  outline: none;
}
.cid-tbELK0wCib .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbELK0wCib .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbELK0wCib .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbELK0wCib .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbELK0wCib .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbELK0wCib .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbELK0wCib .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbELK0wCib .navbar.opened {
  transition: all 0.3s;
}
.cid-tbELK0wCib .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbELK0wCib .navbar .navbar-logo img {
  width: auto;
}
.cid-tbELK0wCib .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbELK0wCib .navbar.collapsed {
  justify-content: center;
}
.cid-tbELK0wCib .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbELK0wCib .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbELK0wCib .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbELK0wCib .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbELK0wCib .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbELK0wCib .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbELK0wCib .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbELK0wCib .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbELK0wCib .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbELK0wCib .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbELK0wCib .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbELK0wCib .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbELK0wCib .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbELK0wCib .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbELK0wCib .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbELK0wCib .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbELK0wCib .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbELK0wCib .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbELK0wCib .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbELK0wCib .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbELK0wCib .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbELK0wCib .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbELK0wCib .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbELK0wCib .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-tbELK0wCib .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbELK0wCib .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbELK0wCib .dropdown-item.active,
.cid-tbELK0wCib .dropdown-item:active {
  background-color: transparent;
}
.cid-tbELK0wCib .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbELK0wCib .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbELK0wCib .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbELK0wCib .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbELK0wCib .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbELK0wCib .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbELK0wCib ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbELK0wCib .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbELK0wCib button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbELK0wCib button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbELK0wCib button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbELK0wCib button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELK0wCib button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbELK0wCib button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbELK0wCib nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELK0wCib nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbELK0wCib nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbELK0wCib nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbELK0wCib .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbELK0wCib a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbELK0wCib .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbELK0wCib .navbar {
    height: 70px;
  }
  .cid-tbELK0wCib .navbar.opened {
    height: auto;
  }
  .cid-tbELK0wCib .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbELKo2DNO {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-tbELKo2DNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbELKo2DNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbELKo2DNO .mbr-section-title {
  color: #912a72;
}
.cid-tbUKADn30u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tbUKADn30u .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tbUKADn30u .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tbUKADn30u .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbUKADn30u .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tbUKADn30u .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #912a72;
}
.cid-tbUKADn30u .mbr-section-title {
  color: #912a72;
}
.cid-tbUKADn30u .card-title {
  color: #912a72;
}
.cid-tbUKADn30u P {
  color: #a74e4e;
}
.cid-tbUKADn30u .mbr-section-subtitle {
  color: #a74e4e;
}
.cid-tbUKEndhk1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-tbUKEndhk1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUKEndhk1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUKEndhk1 .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbIMCjFkrQ {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-tbIMCjFkrQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbIMCjFkrQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbIMCjFkrQ .mbr-section-title {
  color: #912a72;
}
.cid-tbIMC6xBAy {
  z-index: 1000;
  width: 100%;
}
.cid-tbIMC6xBAy nav.navbar {
  position: fixed;
}
.cid-tbIMC6xBAy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbIMC6xBAy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbIMC6xBAy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbIMC6xBAy .dropdown-item:hover,
.cid-tbIMC6xBAy .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbIMC6xBAy .dropdown-item:hover span {
  color: white;
}
.cid-tbIMC6xBAy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbIMC6xBAy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbIMC6xBAy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbIMC6xBAy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbIMC6xBAy .nav-link {
  position: relative;
}
.cid-tbIMC6xBAy .container {
  display: flex;
  margin: auto;
}
.cid-tbIMC6xBAy .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbIMC6xBAy .dropdown-menu,
.cid-tbIMC6xBAy .navbar.opened {
  background: #ffffff !important;
}
.cid-tbIMC6xBAy .nav-item:focus,
.cid-tbIMC6xBAy .nav-link:focus {
  outline: none;
}
.cid-tbIMC6xBAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbIMC6xBAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbIMC6xBAy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbIMC6xBAy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbIMC6xBAy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbIMC6xBAy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbIMC6xBAy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbIMC6xBAy .navbar.opened {
  transition: all 0.3s;
}
.cid-tbIMC6xBAy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbIMC6xBAy .navbar .navbar-logo img {
  width: auto;
}
.cid-tbIMC6xBAy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbIMC6xBAy .navbar.collapsed {
  justify-content: center;
}
.cid-tbIMC6xBAy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbIMC6xBAy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbIMC6xBAy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbIMC6xBAy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbIMC6xBAy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbIMC6xBAy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbIMC6xBAy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbIMC6xBAy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbIMC6xBAy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbIMC6xBAy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbIMC6xBAy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbIMC6xBAy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbIMC6xBAy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbIMC6xBAy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbIMC6xBAy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbIMC6xBAy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbIMC6xBAy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbIMC6xBAy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbIMC6xBAy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbIMC6xBAy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbIMC6xBAy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbIMC6xBAy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbIMC6xBAy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbIMC6xBAy .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-tbIMC6xBAy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbIMC6xBAy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbIMC6xBAy .dropdown-item.active,
.cid-tbIMC6xBAy .dropdown-item:active {
  background-color: transparent;
}
.cid-tbIMC6xBAy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbIMC6xBAy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbIMC6xBAy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbIMC6xBAy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbIMC6xBAy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbIMC6xBAy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbIMC6xBAy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbIMC6xBAy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbIMC6xBAy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbIMC6xBAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbIMC6xBAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbIMC6xBAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbIMC6xBAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbIMC6xBAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbIMC6xBAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbIMC6xBAy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbIMC6xBAy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbIMC6xBAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbIMC6xBAy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbIMC6xBAy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbIMC6xBAy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbIMC6xBAy .navbar {
    height: 70px;
  }
  .cid-tbIMC6xBAy .navbar.opened {
    height: auto;
  }
  .cid-tbIMC6xBAy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbIMCc2FnJ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tbIMCc2FnJ .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tbIMCc2FnJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbIMCc2FnJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tbIMCc2FnJ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tbIMCc2FnJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tbIMCc2FnJ .mbr-text,
.cid-tbIMCc2FnJ .mbr-section-btn {
  color: #a74e4e;
}
.cid-tbIMCc2FnJ .mbr-section-title {
  color: #912a72;
}
.cid-tbUHJj23Wx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2eae2;
}
.cid-tbUHJj23Wx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbUHJj23Wx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbUHJj23Wx .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tbUHJj23Wx .container {
    max-width: 1400px;
  }
}
.cid-tbUHJj23Wx .card {
  margin: auto;
}
.cid-tbUHJj23Wx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tbUHJj23Wx .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tbUHJj23Wx .row {
  justify-content: center;
}
.cid-tbUHJj23Wx H3 {
  color: #912a72;
}
.cid-tbUIzzYxzE {
  padding-top: 150px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tbUIzzYxzE {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .cid-tbUIzzYxzE .container-fluid {
    max-width: 1200px;
    padding: 0 1.5rem;
  }
}
.cid-tbUIzzYxzE .card {
  transition: 0.4s;
  z-index: 1;
  padding: 0.8rem;
}
.cid-tbUIzzYxzE .card:hover {
  transform: translateY(-20px);
}
.cid-tbUIzzYxzE .card-box {
  margin-top: 1.7rem;
  margin-bottom: 1rem;
}
.cid-tbUIzzYxzE .inner-dashed-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tbUIzzYxzE .card:hover .inner-dashed-border {
  animation-play-state: running;
}
.cid-tbUIzzYxzE .card .svg1 {
  stroke: #ff6666;
}
.cid-tbUIzzYxzE .card .svg2 {
  stroke: #ffe161;
}
.cid-tbUIzzYxzE .card .svg3 {
  stroke: #912a72;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tbUIzzYxzE .circle-icon {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  width: 100%;
  position: relative;
  background-color: #fff;
  z-index: -1;
  border-radius: 30px;
  padding: 1rem;
}
.cid-tbUIzzYxzE .mbr-text {
  margin: 0;
  color: #a74e4e;
}
.cid-tbUIzzYxzE .card-title {
  margin-bottom: 0;
  color: #912a72;
}
.cid-tbUIzzYxzE .mbr-iconfont {
  transition: all 0.3s;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
}
.cid-tbUIzzYxzE rect {
  position: absolute;
}
.cid-tbUIzzYxzE .wgl-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 2rem;
  margin-left: 2rem;
  position: relative;
}
.cid-tbUIzzYxzE .wgl-icon1 {
  background-color: #ff6666;
}
.cid-tbUIzzYxzE .wgl-icon2 {
  background-color: #ffe161;
}
.cid-tbUIzzYxzE .wgl-icon3 {
  background-color: #912a72;
}
.cid-tbUIzzYxzE .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tbUIzzYxzE .svg-1 path {
  fill: #f2eae2;
}
.cid-tbUIzzYxzE .svg-2 {
  position: absolute;
  top: 0;
}
.cid-tbUIzzYxzE .svg-2 path {
  fill: #f2eae2;
}
.cid-tbUIzzYxzE .svg1,
.cid-tbUIzzYxzE .svg2,
.cid-tbUIzzYxzE .svg3 {
  position: absolute;
  z-index: -1;
  padding: 1rem;
}
.cid-tbUIzzYxzE .svg1 rect,
.cid-tbUIzzYxzE .svg2 rect,
.cid-tbUIzzYxzE .svg3 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
.cid-tbEkwYGGVM {
  z-index: 1000;
  width: 100%;
}
.cid-tbEkwYGGVM nav.navbar {
  position: fixed;
}
.cid-tbEkwYGGVM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEkwYGGVM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tbEkwYGGVM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbEkwYGGVM .dropdown-item:hover,
.cid-tbEkwYGGVM .dropdown-item:focus {
  background: #912a72 !important;
  color: white !important;
}
.cid-tbEkwYGGVM .dropdown-item:hover span {
  color: white;
}
.cid-tbEkwYGGVM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbEkwYGGVM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbEkwYGGVM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbEkwYGGVM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbEkwYGGVM .nav-link {
  position: relative;
}
.cid-tbEkwYGGVM .container {
  display: flex;
  margin: auto;
}
.cid-tbEkwYGGVM .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbEkwYGGVM .dropdown-menu,
.cid-tbEkwYGGVM .navbar.opened {
  background: #ffffff !important;
}
.cid-tbEkwYGGVM .nav-item:focus,
.cid-tbEkwYGGVM .nav-link:focus {
  outline: none;
}
.cid-tbEkwYGGVM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbEkwYGGVM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbEkwYGGVM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbEkwYGGVM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbEkwYGGVM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbEkwYGGVM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbEkwYGGVM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-tbEkwYGGVM .navbar.opened {
  transition: all 0.3s;
}
.cid-tbEkwYGGVM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbEkwYGGVM .navbar .navbar-logo img {
  width: auto;
}
.cid-tbEkwYGGVM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbEkwYGGVM .navbar.collapsed {
  justify-content: center;
}
.cid-tbEkwYGGVM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbEkwYGGVM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbEkwYGGVM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tbEkwYGGVM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbEkwYGGVM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbEkwYGGVM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbEkwYGGVM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbEkwYGGVM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbEkwYGGVM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbEkwYGGVM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbEkwYGGVM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbEkwYGGVM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbEkwYGGVM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbEkwYGGVM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbEkwYGGVM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbEkwYGGVM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbEkwYGGVM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbEkwYGGVM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbEkwYGGVM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbEkwYGGVM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbEkwYGGVM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbEkwYGGVM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbEkwYGGVM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbEkwYGGVM .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-tbEkwYGGVM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbEkwYGGVM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbEkwYGGVM .dropdown-item.active,
.cid-tbEkwYGGVM .dropdown-item:active {
  background-color: transparent;
}
.cid-tbEkwYGGVM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbEkwYGGVM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbEkwYGGVM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbEkwYGGVM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tbEkwYGGVM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbEkwYGGVM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbEkwYGGVM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbEkwYGGVM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbEkwYGGVM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbEkwYGGVM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tbEkwYGGVM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbEkwYGGVM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEkwYGGVM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbEkwYGGVM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbEkwYGGVM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEkwYGGVM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbEkwYGGVM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbEkwYGGVM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbEkwYGGVM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tbEkwYGGVM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbEkwYGGVM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbEkwYGGVM .navbar {
    height: 70px;
  }
  .cid-tbEkwYGGVM .navbar.opened {
    height: auto;
  }
  .cid-tbEkwYGGVM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbEod4C1AZ {
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tbEod4C1AZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEod4C1AZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEod4C1AZ .mbr-section-title {
  color: #912a72;
}
.cid-tbEod4C1AZ .mbr-text,
.cid-tbEod4C1AZ .mbr-section-btn {
  color: #ffffff;
}
.cid-tbErGfmxlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tbErGfmxlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbErGfmxlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbErGfmxlK .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #912a72;
  margin-bottom: 2rem;
}
.cid-tbErGfmxlK .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #912a72;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tbErGfmxlK .card-title,
.cid-tbErGfmxlK .card-box {
  color: #ffffff;
}
.cid-sFzxmVl7J6 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #a74e4e;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  color: #912a72;
}
.cid-sFzFvgBfc0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #dcbfbf;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sFzFvgBfc0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sFzFvgBfc0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #912a72;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: left;
  color: #912a72;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-tbIToR79w7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbIToR79w7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbIToR79w7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbIToR79w7 .mbr-section-title {
  color: #912a72;
}
.cid-tbIT3jTNYA {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tbIT3jTNYA .col-title {
  margin-bottom: 3rem;
}
.cid-tbIT3jTNYA .text-wrapper {
  display: flex;
  padding: 0 13px 25px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 60, 175, 0.07);
  width: 100%;
}
@media (min-width: 1200px) {
  .cid-tbIT3jTNYA .text-wrapper {
    padding: 15px 83px 30px;
  }
}
@media (min-width: 1400px) {
  .cid-tbIT3jTNYA .text-wrapper {
    padding: 15px 71px 30px;
  }
}
.cid-tbIT3jTNYA .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tbIT3jTNYA .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  margin-top: 40px;
}
@media (min-width: 1400px) {
  .cid-tbIT3jTNYA .card {
    padding: 0 24px;
  }
}
.cid-tbIT3jTNYA .icon-box {
  display: flex;
  padding: 14px;
  border-radius: 50%;
  margin-bottom: 25px;
}
.cid-tbIT3jTNYA .icon-box .mbr-iconfont {
  font-size: 17px;
}
.cid-tbIT3jTNYA .icon-box1 {
  background-color: rgba(68, 109, 255, 0.07);
}
.cid-tbIT3jTNYA .icon-box1 .mbr-iconfont {
  color: #004ab8;
}
.cid-tbIT3jTNYA .icon-box2 {
  background-color: #fde8ff;
}
.cid-tbIT3jTNYA .icon-box2 .mbr-iconfont {
  color: #913bff;
}
.cid-tbIT3jTNYA .icon-box3 {
  background-color: rgba(255, 122, 65, 0.12);
}
.cid-tbIT3jTNYA .icon-box3 .mbr-iconfont {
  color: #ff7a41;
}
.cid-tbIT3jTNYA .card-title {
  color: #a74e4e;
  margin-bottom: 0;
  width: 100%;
}
.cid-tbIT3jTNYA .card-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 16px;
  width: 100%;
  margin-top: 20px;
}
.cid-tbIX5iblvj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fef7f2;
}
@media (min-width: 1400px) {
  .cid-tbIX5iblvj .container {
    max-width: 1162px;
  }
}
.cid-tbIX5iblvj .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tbIX5iblvj .btn:hover,
.cid-tbIX5iblvj .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tbIX5iblvj .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tbIX5iblvj img,
.cid-tbIX5iblvj .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tbIX5iblvj .item-img {
  height: 100%;
}
.cid-tbIX5iblvj .item-img img {
  object-fit: cover;
}
.cid-tbIX5iblvj .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tbIX5iblvj .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tbIX5iblvj .mbr-text,
.cid-tbIX5iblvj .mbr-section-btn {
  color: #ffffff;
}
.cid-tbIX5iblvj .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tbIX5iblvj .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tbIX5iblvj .item:focus,
.cid-tbIX5iblvj span:focus {
  outline: none;
}
.cid-tbIX5iblvj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tbIX5iblvj .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-tbIX5iblvj .mbr-section-title,
.cid-tbIX5iblvj .mbr-section-btn {
  color: #912a72;
}
.cid-tbEGbVKqaD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-tbEGbVKqaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbEGbVKqaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbEGbVKqaD .mbr-section-title {
  color: #912a72;
}
.cid-tbURq0erjp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e000a;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .content {
    text-align: center;
  }
  .cid-tbURq0erjp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tbURq0erjp .logo-subtitle {
  color: #8d97ad;
}
.cid-tbURq0erjp .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tbURq0erjp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tbURq0erjp .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tbURq0erjp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tbURq0erjp .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-tbURq0erjp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tbURq0erjp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tbURq0erjp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbURq0erjp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbURq0erjp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbURq0erjp .list-item {
  display: flex;
}
.cid-tbURq0erjp .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tbURq0erjp ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tbURq0erjp ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tbURq0erjp ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tbURq0erjp .column-title {
  color: #ffffff;
}
.cid-tbURq0erjp P {
  color: #ffffff;
}
.cid-tbURq0erjp .mbr-text {
  color: #ffffff;
}
