body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Cairo', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'Cairo', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-5 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 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-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #f3e11e !important;
}
.bg-success {
  background-color: #9ccd7e !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #b97ecd !important;
}
.bg-danger {
  background-color: #d75959 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f3e11e !important;
  border-color: #f3e11e !important;
  color: #111001 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #111001 !important;
  background-color: #bbac0a !important;
  border-color: #bbac0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b47b7 !important;
  border-color: #9b47b7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d75959 !important;
  border-color: #d75959 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b72c2c !important;
  border-color: #b72c2c !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #f3e11e;
  color: #f3e11e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #111001;
  background-color: #f3e11e;
  border-color: #f3e11e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #111001 !important;
  background-color: #f3e11e !important;
  border-color: #f3e11e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b97ecd;
  color: #b97ecd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #b97ecd;
  border-color: #b97ecd;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #d75959;
  color: #d75959;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #d75959;
  border-color: #d75959;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d75959 !important;
  border-color: #d75959 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f3e11e !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #9ccd7e !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #b97ecd !important;
}
.text-danger {
  color: #d75959 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f8ee7f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e1c8e9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ebabab !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #b97ecd;
}
.alert-danger {
  background-color: #d75959;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f3e11e;
  border-color: #f3e11e;
  color: #292602;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f3e11e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfbe0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.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: #fffdfd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 3.2rem;
}
blockquote {
  border-color: #f3e11e;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f3e11e;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f3e11e;
  border-bottom-color: #f3e11e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f3e11e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3c71d3 !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='%23f3e11e' %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-uqRKsEQL9p .navbar-dropdown {
  position: relative !important;
}
.cid-uqRKsEQL9p .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-uqRKsEQL9p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqRKsEQL9p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqRKsEQL9p .dropdown-item:hover,
.cid-uqRKsEQL9p .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uqRKsEQL9p .dropdown-item:hover span {
  color: white;
}
.cid-uqRKsEQL9p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqRKsEQL9p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqRKsEQL9p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqRKsEQL9p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqRKsEQL9p .nav-link {
  position: relative;
}
.cid-uqRKsEQL9p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqRKsEQL9p .container {
    flex-wrap: nowrap;
  }
}
.cid-uqRKsEQL9p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqRKsEQL9p .dropdown-menu,
.cid-uqRKsEQL9p .navbar.opened {
  background: #611750 !important;
}
.cid-uqRKsEQL9p .nav-item:focus,
.cid-uqRKsEQL9p .nav-link:focus {
  outline: none;
}
.cid-uqRKsEQL9p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqRKsEQL9p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqRKsEQL9p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqRKsEQL9p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqRKsEQL9p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqRKsEQL9p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqRKsEQL9p .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uqRKsEQL9p .navbar.opened {
  transition: all 0.3s;
}
.cid-uqRKsEQL9p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqRKsEQL9p .navbar .navbar-logo img {
  width: auto;
}
.cid-uqRKsEQL9p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqRKsEQL9p .navbar.collapsed {
  justify-content: center;
}
.cid-uqRKsEQL9p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqRKsEQL9p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqRKsEQL9p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uqRKsEQL9p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqRKsEQL9p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqRKsEQL9p .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-uqRKsEQL9p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqRKsEQL9p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqRKsEQL9p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqRKsEQL9p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqRKsEQL9p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqRKsEQL9p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqRKsEQL9p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqRKsEQL9p .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-uqRKsEQL9p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqRKsEQL9p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqRKsEQL9p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqRKsEQL9p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqRKsEQL9p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqRKsEQL9p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqRKsEQL9p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqRKsEQL9p .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqRKsEQL9p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqRKsEQL9p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqRKsEQL9p .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-uqRKsEQL9p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqRKsEQL9p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqRKsEQL9p .dropdown-item.active,
.cid-uqRKsEQL9p .dropdown-item:active {
  background-color: transparent;
}
.cid-uqRKsEQL9p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqRKsEQL9p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqRKsEQL9p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqRKsEQL9p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uqRKsEQL9p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqRKsEQL9p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqRKsEQL9p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqRKsEQL9p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqRKsEQL9p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqRKsEQL9p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqRKsEQL9p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqRKsEQL9p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqRKsEQL9p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqRKsEQL9p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqRKsEQL9p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqRKsEQL9p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqRKsEQL9p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqRKsEQL9p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqRKsEQL9p .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqRKsEQL9p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqRKsEQL9p .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-uqRKsEQL9p .navbar {
    height: 70px;
  }
  .cid-uqRKsEQL9p .navbar.opened {
    height: auto;
  }
  .cid-uqRKsEQL9p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfmVmRWOK {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/04-kup-mbye-what-to-look-for-lux-agent-res-art-1500x900-fin.jpg-1500x900.jpg");
}
.cid-uKfmVmRWOK .mbr-section-title.display-2 {
  font-size: 40px;
  line-height: 1.25;
}
.cid-uKfmVmRWOK .mbr-section-subtitle.display-5 {
  font-size: 26px;
  line-height: 1.385;
}
.cid-uKfmVmRWOK .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-uKfmVmRWOK .mbr-section-btn .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.cid-uKfmVmRWOK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfmVmRWOK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqTyTqE3Ld {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uqTyTqE3Ld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqTyTqE3Ld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqTyTqE3Ld .content-wrapper {
  padding: 80px 90px;
  background-color: #6f3f7c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqTyTqE3Ld .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uqTyTqE3Ld .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uqTyTqE3Ld .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uqTyTqE3Ld .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqTyTqE3Ld .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqTyTqE3Ld .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqTyTqE3Ld .mbr-section-title {
  color: #050f0f;
}
.cid-uqTyTqE3Ld .mbr-text {
  color: #f7fff7;
}
.cid-uqTyTqE3Ld .mbr-section-title,
.cid-uqTyTqE3Ld .mbr-section-btn {
  color: #f7fff7;
}
.cid-uqNDuxTHSj {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uqNDuxTHSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNDuxTHSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqNDuxTHSj .container-small,
.cid-uqNDuxTHSj .container-fluid {
  padding: 0 !important;
}
.cid-uqNDuxTHSj .container-small {
  max-width: 1440px;
}
.cid-uqNDuxTHSj .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #f7fff7;
}
@media (max-width: 991px) {
  .cid-uqNDuxTHSj .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqNDuxTHSj .text-box {
    padding: 50px 10px;
  }
}
.cid-uqNDuxTHSj .mbr-section-title {
  color: #000000;
}
.cid-uqNDuxTHSj .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uqNDuxTHSj .mbr-text {
  margin-top: 44px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uqNDuxTHSj .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqNDuxTHSj .mbr-text a {
  text-decoration: underline;
}
.cid-uqNDuxTHSj .mbr-section-btn {
  margin-top: 34px;
}
.cid-uqTNZXFGxL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9fafb;
}
.cid-uqTNZXFGxL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqTNZXFGxL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqTNZXFGxL .container,
.cid-uqTNZXFGxL .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .container,
  .cid-uqTNZXFGxL .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqTNZXFGxL .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-uqTNZXFGxL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uqTNZXFGxL .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
  border-left: none;
  border-right: 1px solid #3d4045;
  padding-left: 0;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqTNZXFGxL .text-wrapper {
    padding: 0;
  }
}
.cid-uqTNZXFGxL .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqTNZXFGxL .mbr-section-title {
  color: #000000;
}
.cid-uqTNZXFGxL .mbr-text {
  color: #000000;
}
.cid-uKfdt5RBvu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uKfdt5RBvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfdt5RBvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfdt5RBvu .row {
  margin: 0 -8px;
}
.cid-uKfdt5RBvu .row .card {
  padding: 0 8px;
}
.cid-uKfdt5RBvu .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #b97ecd;
}
@media (max-width: 1440px) {
  .cid-uKfdt5RBvu .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uKfdt5RBvu .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uKfdt5RBvu .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uKfdt5RBvu .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uKfdt5RBvu .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uKfdt5RBvu .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uKfdt5RBvu .image-wrapper {
  height: 100%;
}
.cid-uKfdt5RBvu .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKfdt5RBvu .image-wrapper img {
    height: 300px;
  }
}
.cid-uKfdt5RBvu .mbr-section-title {
  color: #2c2c26;
}
.cid-uKfdt5RBvu .mbr-text,
.cid-uKfdt5RBvu .text-wrapper {
  color: #050f0f;
}
.cid-uKfdDHsUgv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6f3f7c;
  background-image: linear-gradient(#6f3f7c 80%, #f7fff7 110%);
}
.cid-uKfdDHsUgv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfdDHsUgv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfdDHsUgv .row {
  justify-content: center;
}
.cid-uKfdDHsUgv .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uKfdDHsUgv .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #ecedee, #f7fff7 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uKfdDHsUgv .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uKfdDHsUgv .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uKfdDHsUgv .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uKfdDHsUgv .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uKfdDHsUgv .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uKfdDHsUgv .mbr-section-title {
  color: #ffffff;
}
.cid-uKfdDHsUgv .mbr-text {
  color: #e6eaf1;
}
.cid-uKfdDHsUgv .mbr-desc {
  color: #ffffff;
}
.cid-uKfdDHsUgv .mbr-section-title,
.cid-uKfdDHsUgv .mbr-section-btn {
  color: #e6eaf1;
}
.cid-uKfedgJO8L {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fafafa;
}
.cid-uKfedgJO8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfedgJO8L .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uKfedgJO8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfedgJO8L h1 {
  max-width: 800px;
}
.cid-uKfedgJO8L p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uKfedgJO8L {
    align-items: center;
  }
  .cid-uKfedgJO8L .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uKfedgJO8L .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uKfedgJO8L {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uKfedgJO8L .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uKfedgJO8L .content-wrap {
    width: 100%;
  }
}
.cid-uKfedgJO8L .mbr-section-subtitle,
.cid-uKfedgJO8L .line {
  color: #291f1e;
}
.cid-uKfedgJO8L .mbr-text,
.cid-uKfedgJO8L .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-uKfedgJO8L .mbr-section-title {
  color: #291f1e;
}
.cid-uKeXv9wKsw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-uKeXv9wKsw .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKeXv9wKsw .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKeXv9wKsw .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKeXv9wKsw .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKeXv9wKsw .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKeXv9wKsw .row {
  justify-content: center;
}
.cid-uKeXv9wKsw .card-text {
  color: #050f0f;
}
.cid-uKeXv9wKsw .card-title,
.cid-uKeXv9wKsw .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKeXv9wKsw .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKeXv9wKsw .mbr-section-title {
  color: #050f0f;
}
.cid-uKeYjSj31c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #050f0f;
}
.cid-uKeYjSj31c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKeYjSj31c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKeYjSj31c .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKeYjSj31c a {
  position: relative;
  width: fit-content;
}
.cid-uKeYjSj31c a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKeYjSj31c a:hover:before {
  width: 0;
}
.cid-uKeYjSj31c .copyright {
  color: #ffffff;
}
.cid-uKeYjSj31c .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKeYjSj31c .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKeYjSj31c .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKeYjSj31c .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKeYjSj31c .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKeYjSj31c .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKeYjSj31c p {
    text-align: center;
  }
}
.cid-uKf5EAKunB .navbar-dropdown {
  position: relative !important;
}
.cid-uKf5EAKunB .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-uKf5EAKunB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKf5EAKunB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKf5EAKunB .dropdown-item:hover,
.cid-uKf5EAKunB .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uKf5EAKunB .dropdown-item:hover span {
  color: white;
}
.cid-uKf5EAKunB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKf5EAKunB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKf5EAKunB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKf5EAKunB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKf5EAKunB .nav-link {
  position: relative;
}
.cid-uKf5EAKunB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKf5EAKunB .container {
    flex-wrap: nowrap;
  }
}
.cid-uKf5EAKunB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKf5EAKunB .dropdown-menu,
.cid-uKf5EAKunB .navbar.opened {
  background: #611750 !important;
}
.cid-uKf5EAKunB .nav-item:focus,
.cid-uKf5EAKunB .nav-link:focus {
  outline: none;
}
.cid-uKf5EAKunB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKf5EAKunB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKf5EAKunB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKf5EAKunB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKf5EAKunB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKf5EAKunB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKf5EAKunB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uKf5EAKunB .navbar.opened {
  transition: all 0.3s;
}
.cid-uKf5EAKunB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKf5EAKunB .navbar .navbar-logo img {
  width: auto;
}
.cid-uKf5EAKunB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKf5EAKunB .navbar.collapsed {
  justify-content: center;
}
.cid-uKf5EAKunB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKf5EAKunB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKf5EAKunB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKf5EAKunB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKf5EAKunB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKf5EAKunB .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-uKf5EAKunB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKf5EAKunB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKf5EAKunB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKf5EAKunB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKf5EAKunB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKf5EAKunB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKf5EAKunB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKf5EAKunB .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-uKf5EAKunB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKf5EAKunB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKf5EAKunB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKf5EAKunB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKf5EAKunB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKf5EAKunB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKf5EAKunB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKf5EAKunB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKf5EAKunB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKf5EAKunB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKf5EAKunB .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-uKf5EAKunB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKf5EAKunB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKf5EAKunB .dropdown-item.active,
.cid-uKf5EAKunB .dropdown-item:active {
  background-color: transparent;
}
.cid-uKf5EAKunB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKf5EAKunB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKf5EAKunB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKf5EAKunB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uKf5EAKunB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKf5EAKunB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKf5EAKunB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKf5EAKunB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKf5EAKunB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKf5EAKunB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKf5EAKunB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKf5EAKunB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf5EAKunB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf5EAKunB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKf5EAKunB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf5EAKunB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKf5EAKunB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKf5EAKunB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf5EAKunB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKf5EAKunB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKf5EAKunB .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-uKf5EAKunB .navbar {
    height: 70px;
  }
  .cid-uKf5EAKunB .navbar.opened {
    height: auto;
  }
  .cid-uKf5EAKunB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfkAxaMty {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uKfkAxaMty .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #6f3f7c;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uKfkAxaMty .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfkAxaMty .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfkAxaMty .row {
  position: relative;
  z-index: 1;
}
.cid-uKfkAxaMty .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uKfkAxaMty .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .image-wrapper {
    margin-left: 0;
  }
}
.cid-uKfkAxaMty .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .image-wrapper img {
    height: 350px;
  }
}
.cid-uKfkAxaMty .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uKfkAxaMty .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uKfkAxaMty .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uKfkAxaMty .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uKfkAxaMty .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uKfkAxaMty .mbr-text {
  color: #51565c;
}
.cid-uKfkAxaMty .mbr-desc {
  color: #51565c;
}
.cid-uKfkAxaMty .mbr-text,
.cid-uKfkAxaMty .text-wrapper {
  color: #f7fff7;
}
.cid-uKf5EzxoPc {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #050f0f;
}
.cid-uKf5EzxoPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKf5EzxoPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKf5EzxoPc .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #f7fff7 -30%, #999999 20%, #b97ecd 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uKf5EzxoPc .card-wrapper {
    padding: 16px;
  }
}
.cid-uKf5EzxoPc .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uKf5EzxoPc .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uKf5EzxoPc .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uKf5EzxoPc .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKf5EzxoPc .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uKf5EzxoPc .list {
  color: #ffffff;
  text-align: center;
}
.cid-uKf5EzxoPc .list,
.cid-uKf5EzxoPc .item-wrap,
.cid-uKf5EzxoPc .tabs-wrapper {
  color: #f7fff7;
}
.cid-uKf5EzZsHg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-uKf5EzZsHg .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKf5EzZsHg .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKf5EzZsHg .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKf5EzZsHg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKf5EzZsHg .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKf5EzZsHg .row {
  justify-content: center;
}
.cid-uKf5EzZsHg .card-text {
  color: #050f0f;
}
.cid-uKf5EzZsHg .card-title,
.cid-uKf5EzZsHg .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKf5EzZsHg .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKf5EzZsHg .mbr-section-title {
  color: #000000;
}
.cid-uKf5EB9dAg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #050f0f;
}
.cid-uKf5EB9dAg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKf5EB9dAg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKf5EB9dAg .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKf5EB9dAg a {
  position: relative;
  width: fit-content;
}
.cid-uKf5EB9dAg a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKf5EB9dAg a:hover:before {
  width: 0;
}
.cid-uKf5EB9dAg .copyright {
  color: #ffffff;
}
.cid-uKf5EB9dAg .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKf5EB9dAg .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKf5EB9dAg .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKf5EB9dAg .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKf5EB9dAg .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKf5EB9dAg .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKf5EB9dAg p {
    text-align: center;
  }
}
.cid-uKf64fz0Zc .navbar-dropdown {
  position: relative !important;
}
.cid-uKf64fz0Zc .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-uKf64fz0Zc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKf64fz0Zc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKf64fz0Zc .dropdown-item:hover,
.cid-uKf64fz0Zc .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uKf64fz0Zc .dropdown-item:hover span {
  color: white;
}
.cid-uKf64fz0Zc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKf64fz0Zc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKf64fz0Zc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKf64fz0Zc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKf64fz0Zc .nav-link {
  position: relative;
}
.cid-uKf64fz0Zc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKf64fz0Zc .container {
    flex-wrap: nowrap;
  }
}
.cid-uKf64fz0Zc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKf64fz0Zc .dropdown-menu,
.cid-uKf64fz0Zc .navbar.opened {
  background: #611750 !important;
}
.cid-uKf64fz0Zc .nav-item:focus,
.cid-uKf64fz0Zc .nav-link:focus {
  outline: none;
}
.cid-uKf64fz0Zc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKf64fz0Zc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKf64fz0Zc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKf64fz0Zc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKf64fz0Zc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKf64fz0Zc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKf64fz0Zc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uKf64fz0Zc .navbar.opened {
  transition: all 0.3s;
}
.cid-uKf64fz0Zc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKf64fz0Zc .navbar .navbar-logo img {
  width: auto;
}
.cid-uKf64fz0Zc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKf64fz0Zc .navbar.collapsed {
  justify-content: center;
}
.cid-uKf64fz0Zc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKf64fz0Zc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKf64fz0Zc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKf64fz0Zc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKf64fz0Zc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKf64fz0Zc .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-uKf64fz0Zc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKf64fz0Zc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKf64fz0Zc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKf64fz0Zc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKf64fz0Zc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKf64fz0Zc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKf64fz0Zc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKf64fz0Zc .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-uKf64fz0Zc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKf64fz0Zc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKf64fz0Zc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKf64fz0Zc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKf64fz0Zc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKf64fz0Zc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKf64fz0Zc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKf64fz0Zc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKf64fz0Zc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKf64fz0Zc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKf64fz0Zc .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-uKf64fz0Zc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKf64fz0Zc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKf64fz0Zc .dropdown-item.active,
.cid-uKf64fz0Zc .dropdown-item:active {
  background-color: transparent;
}
.cid-uKf64fz0Zc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKf64fz0Zc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKf64fz0Zc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKf64fz0Zc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uKf64fz0Zc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKf64fz0Zc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKf64fz0Zc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKf64fz0Zc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKf64fz0Zc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKf64fz0Zc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKf64fz0Zc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKf64fz0Zc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf64fz0Zc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf64fz0Zc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKf64fz0Zc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf64fz0Zc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKf64fz0Zc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKf64fz0Zc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf64fz0Zc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKf64fz0Zc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKf64fz0Zc .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-uKf64fz0Zc .navbar {
    height: 70px;
  }
  .cid-uKf64fz0Zc .navbar.opened {
    height: auto;
  }
  .cid-uKf64fz0Zc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfkXNqRTh {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uKfkXNqRTh .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #6f3f7c;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uKfkXNqRTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfkXNqRTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfkXNqRTh .row {
  position: relative;
  z-index: 1;
}
.cid-uKfkXNqRTh .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uKfkXNqRTh .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .image-wrapper {
    margin-left: 0;
  }
}
.cid-uKfkXNqRTh .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .image-wrapper img {
    height: 350px;
  }
}
.cid-uKfkXNqRTh .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uKfkXNqRTh .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uKfkXNqRTh .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uKfkXNqRTh .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uKfkXNqRTh .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uKfkXNqRTh .mbr-text {
  color: #51565c;
}
.cid-uKfkXNqRTh .mbr-desc {
  color: #51565c;
}
.cid-uKfkXNqRTh .mbr-text,
.cid-uKfkXNqRTh .text-wrapper {
  color: #f7fff7;
}
.cid-uKf64ex41R {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uKf64ex41R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKf64ex41R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKf64ex41R .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #f7fff7 -30%, #999999 20%, #b97ecd 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uKf64ex41R .card-wrapper {
    padding: 16px;
  }
}
.cid-uKf64ex41R .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uKf64ex41R .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uKf64ex41R .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uKf64ex41R .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKf64ex41R .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uKf64ex41R .list {
  color: #ffffff;
  text-align: center;
}
.cid-uKf64ex41R .list,
.cid-uKf64ex41R .item-wrap,
.cid-uKf64ex41R .tabs-wrapper {
  color: #f7fff7;
}
.cid-uKf64f1dNb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-uKf64f1dNb .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKf64f1dNb .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKf64f1dNb .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKf64f1dNb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKf64f1dNb .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKf64f1dNb .row {
  justify-content: center;
}
.cid-uKf64f1dNb .card-text {
  color: #050f0f;
}
.cid-uKf64f1dNb .card-title,
.cid-uKf64f1dNb .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKf64f1dNb .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKf64f1dNb .mbr-section-title {
  color: #050f0f;
}
.cid-uKf64fZiIy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #050f0f;
}
.cid-uKf64fZiIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKf64fZiIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKf64fZiIy .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKf64fZiIy a {
  position: relative;
  width: fit-content;
}
.cid-uKf64fZiIy a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKf64fZiIy a:hover:before {
  width: 0;
}
.cid-uKf64fZiIy .copyright {
  color: #ffffff;
}
.cid-uKf64fZiIy .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKf64fZiIy .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKf64fZiIy .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKf64fZiIy .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKf64fZiIy .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKf64fZiIy .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKf64fZiIy p {
    text-align: center;
  }
}
.cid-uKf20BZ1Uo .navbar-dropdown {
  position: relative !important;
}
.cid-uKf20BZ1Uo .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-uKf20BZ1Uo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKf20BZ1Uo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKf20BZ1Uo .dropdown-item:hover,
.cid-uKf20BZ1Uo .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uKf20BZ1Uo .dropdown-item:hover span {
  color: white;
}
.cid-uKf20BZ1Uo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKf20BZ1Uo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKf20BZ1Uo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKf20BZ1Uo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKf20BZ1Uo .nav-link {
  position: relative;
}
.cid-uKf20BZ1Uo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKf20BZ1Uo .container {
    flex-wrap: nowrap;
  }
}
.cid-uKf20BZ1Uo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKf20BZ1Uo .dropdown-menu,
.cid-uKf20BZ1Uo .navbar.opened {
  background: #611750 !important;
}
.cid-uKf20BZ1Uo .nav-item:focus,
.cid-uKf20BZ1Uo .nav-link:focus {
  outline: none;
}
.cid-uKf20BZ1Uo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKf20BZ1Uo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKf20BZ1Uo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKf20BZ1Uo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKf20BZ1Uo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKf20BZ1Uo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKf20BZ1Uo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uKf20BZ1Uo .navbar.opened {
  transition: all 0.3s;
}
.cid-uKf20BZ1Uo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKf20BZ1Uo .navbar .navbar-logo img {
  width: auto;
}
.cid-uKf20BZ1Uo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKf20BZ1Uo .navbar.collapsed {
  justify-content: center;
}
.cid-uKf20BZ1Uo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKf20BZ1Uo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKf20BZ1Uo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKf20BZ1Uo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKf20BZ1Uo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKf20BZ1Uo .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-uKf20BZ1Uo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKf20BZ1Uo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKf20BZ1Uo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKf20BZ1Uo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKf20BZ1Uo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKf20BZ1Uo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKf20BZ1Uo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKf20BZ1Uo .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-uKf20BZ1Uo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKf20BZ1Uo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKf20BZ1Uo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKf20BZ1Uo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKf20BZ1Uo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKf20BZ1Uo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKf20BZ1Uo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKf20BZ1Uo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKf20BZ1Uo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKf20BZ1Uo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKf20BZ1Uo .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-uKf20BZ1Uo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKf20BZ1Uo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKf20BZ1Uo .dropdown-item.active,
.cid-uKf20BZ1Uo .dropdown-item:active {
  background-color: transparent;
}
.cid-uKf20BZ1Uo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKf20BZ1Uo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKf20BZ1Uo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKf20BZ1Uo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uKf20BZ1Uo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKf20BZ1Uo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKf20BZ1Uo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKf20BZ1Uo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKf20BZ1Uo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKf20BZ1Uo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKf20BZ1Uo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKf20BZ1Uo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf20BZ1Uo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKf20BZ1Uo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKf20BZ1Uo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf20BZ1Uo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKf20BZ1Uo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKf20BZ1Uo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKf20BZ1Uo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKf20BZ1Uo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKf20BZ1Uo .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-uKf20BZ1Uo .navbar {
    height: 70px;
  }
  .cid-uKf20BZ1Uo .navbar.opened {
    height: auto;
  }
  .cid-uKf20BZ1Uo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfhbGkY3M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6f3f7c;
}
.cid-uKfhbGkY3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfhbGkY3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfhbGkY3M .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .container {
    padding: 0 16px;
  }
}
.cid-uKfhbGkY3M .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-uKfhbGkY3M .row {
    padding: 45px 4px;
  }
}
.cid-uKfhbGkY3M .row .card {
  justify-content: center;
}
.cid-uKfhbGkY3M .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-uKfhbGkY3M .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uKfhbGkY3M .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKfhbGkY3M .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-uKfhbGkY3M .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-uKfhbGkY3M .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uKfhbGkY3M .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKfhbGkY3M .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uKfhbGkY3M .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uKfhbGkY3M .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #6f3f7c;
}
@media (max-width: 1440px) {
  .cid-uKfhbGkY3M .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-uKfhbGkY3M .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uKfhbGkY3M .image-wrapper img {
    height: 350px;
  }
}
.cid-uKfhbGkY3M .mbr-section-subtitle {
  color: #d1cece;
}
.cid-uKfhbGkY3M .mbr-section-title {
  color: #192227;
}
.cid-uKfhbGkY3M .mbr-text {
  color: #192227;
}
.cid-uKfhbGkY3M .mbr-text,
.cid-uKfhbGkY3M .mbr-section-btn {
  color: #000000;
}
.cid-uKfg9js4E3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b97ecd;
  overflow: hidden;
}
.cid-uKfg9js4E3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfg9js4E3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfg9js4E3 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #611750, #b97ecd);
  box-shadow: 10px 10px 19px #b97ecd, -10px -10px 19px #f7fff7;
}
@media (max-width: 767px) {
  .cid-uKfg9js4E3 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uKfg9js4E3 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uKfg9js4E3 .card-title {
  color: #e6eaf1;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfg9js4E3 .card-title {
    margin-bottom: 20px;
  }
}
.cid-uKfg9js4E3 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfg9js4E3 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uKfg9js4E3 .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uKf20Bl32A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uKf20Bl32A .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKf20Bl32A .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKf20Bl32A .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKf20Bl32A .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKf20Bl32A .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKf20Bl32A .row {
  justify-content: center;
}
.cid-uKf20Bl32A .card-text {
  color: #050f0f;
}
.cid-uKf20Bl32A .card-title,
.cid-uKf20Bl32A .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKf20Bl32A .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKf20Bl32A .mbr-section-title {
  color: #f7fff7;
}
.cid-uKf20CsMuM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uKf20CsMuM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKf20CsMuM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKf20CsMuM .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKf20CsMuM a {
  position: relative;
  width: fit-content;
}
.cid-uKf20CsMuM a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKf20CsMuM a:hover:before {
  width: 0;
}
.cid-uKf20CsMuM .copyright {
  color: #ffffff;
}
.cid-uKf20CsMuM .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKf20CsMuM .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKf20CsMuM .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKf20CsMuM .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKf20CsMuM .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKf20CsMuM .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKf20CsMuM p {
    text-align: center;
  }
}
.cid-uKfizEMsMM .navbar-dropdown {
  position: relative !important;
}
.cid-uKfizEMsMM .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-uKfizEMsMM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKfizEMsMM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKfizEMsMM .dropdown-item:hover,
.cid-uKfizEMsMM .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uKfizEMsMM .dropdown-item:hover span {
  color: white;
}
.cid-uKfizEMsMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKfizEMsMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKfizEMsMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKfizEMsMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKfizEMsMM .nav-link {
  position: relative;
}
.cid-uKfizEMsMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKfizEMsMM .container {
    flex-wrap: nowrap;
  }
}
.cid-uKfizEMsMM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKfizEMsMM .dropdown-menu,
.cid-uKfizEMsMM .navbar.opened {
  background: #611750 !important;
}
.cid-uKfizEMsMM .nav-item:focus,
.cid-uKfizEMsMM .nav-link:focus {
  outline: none;
}
.cid-uKfizEMsMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKfizEMsMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKfizEMsMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKfizEMsMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKfizEMsMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKfizEMsMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKfizEMsMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uKfizEMsMM .navbar.opened {
  transition: all 0.3s;
}
.cid-uKfizEMsMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKfizEMsMM .navbar .navbar-logo img {
  width: auto;
}
.cid-uKfizEMsMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKfizEMsMM .navbar.collapsed {
  justify-content: center;
}
.cid-uKfizEMsMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKfizEMsMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKfizEMsMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKfizEMsMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKfizEMsMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKfizEMsMM .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-uKfizEMsMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKfizEMsMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKfizEMsMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKfizEMsMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKfizEMsMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKfizEMsMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKfizEMsMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKfizEMsMM .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-uKfizEMsMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKfizEMsMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKfizEMsMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKfizEMsMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKfizEMsMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKfizEMsMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKfizEMsMM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKfizEMsMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKfizEMsMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKfizEMsMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKfizEMsMM .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-uKfizEMsMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKfizEMsMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKfizEMsMM .dropdown-item.active,
.cid-uKfizEMsMM .dropdown-item:active {
  background-color: transparent;
}
.cid-uKfizEMsMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKfizEMsMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKfizEMsMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKfizEMsMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uKfizEMsMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKfizEMsMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKfizEMsMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKfizEMsMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKfizEMsMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKfizEMsMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKfizEMsMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKfizEMsMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfizEMsMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfizEMsMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKfizEMsMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfizEMsMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKfizEMsMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKfizEMsMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfizEMsMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKfizEMsMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKfizEMsMM .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-uKfizEMsMM .navbar {
    height: 70px;
  }
  .cid-uKfizEMsMM .navbar.opened {
    height: auto;
  }
  .cid-uKfizEMsMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfiEMoQJH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6f3f7c;
}
.cid-uKfiEMoQJH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfiEMoQJH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfiEMoQJH .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .container {
    padding: 0 16px;
  }
}
.cid-uKfiEMoQJH .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-uKfiEMoQJH .row {
    padding: 45px 4px;
  }
}
.cid-uKfiEMoQJH .row .card {
  justify-content: center;
}
.cid-uKfiEMoQJH .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-uKfiEMoQJH .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uKfiEMoQJH .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKfiEMoQJH .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-uKfiEMoQJH .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-uKfiEMoQJH .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uKfiEMoQJH .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKfiEMoQJH .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uKfiEMoQJH .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uKfiEMoQJH .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #6f3f7c;
}
@media (max-width: 1440px) {
  .cid-uKfiEMoQJH .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-uKfiEMoQJH .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uKfiEMoQJH .image-wrapper img {
    height: 350px;
  }
}
.cid-uKfiEMoQJH .mbr-section-subtitle {
  color: #d1cece;
}
.cid-uKfiEMoQJH .mbr-section-title {
  color: #192227;
}
.cid-uKfiEMoQJH .mbr-text {
  color: #192227;
}
.cid-uKfiEMoQJH .mbr-text,
.cid-uKfiEMoQJH .mbr-section-btn {
  color: #000000;
}
.cid-uKfizGqjqV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b97ecd;
  overflow: hidden;
}
.cid-uKfizGqjqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfizGqjqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfizGqjqV .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #611750, #b97ecd);
  box-shadow: 10px 10px 19px #b97ecd, -10px -10px 19px #f7fff7;
}
@media (max-width: 767px) {
  .cid-uKfizGqjqV .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uKfizGqjqV .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uKfizGqjqV .card-title {
  color: #e6eaf1;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfizGqjqV .card-title {
    margin-bottom: 20px;
  }
}
.cid-uKfizGqjqV .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfizGqjqV .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uKfizGqjqV .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uKfizGVhbd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uKfizGVhbd .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKfizGVhbd .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKfizGVhbd .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKfizGVhbd .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKfizGVhbd .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKfizGVhbd .row {
  justify-content: center;
}
.cid-uKfizGVhbd .card-text {
  color: #050f0f;
}
.cid-uKfizGVhbd .card-title,
.cid-uKfizGVhbd .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKfizGVhbd .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKfizGVhbd .mbr-section-title {
  color: #f7fff7;
}
.cid-uKfizHorLz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uKfizHorLz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfizHorLz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfizHorLz .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKfizHorLz a {
  position: relative;
  width: fit-content;
}
.cid-uKfizHorLz a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKfizHorLz a:hover:before {
  width: 0;
}
.cid-uKfizHorLz .copyright {
  color: #ffffff;
}
.cid-uKfizHorLz .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKfizHorLz .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKfizHorLz .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKfizHorLz .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKfizHorLz .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKfizHorLz .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKfizHorLz p {
    text-align: center;
  }
}
.cid-uKfjEFB3WE .navbar-dropdown {
  position: relative !important;
}
.cid-uKfjEFB3WE .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-uKfjEFB3WE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKfjEFB3WE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKfjEFB3WE .dropdown-item:hover,
.cid-uKfjEFB3WE .dropdown-item:focus {
  background: #f3e11e !important;
  color: white !important;
}
.cid-uKfjEFB3WE .dropdown-item:hover span {
  color: white;
}
.cid-uKfjEFB3WE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKfjEFB3WE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKfjEFB3WE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKfjEFB3WE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKfjEFB3WE .nav-link {
  position: relative;
}
.cid-uKfjEFB3WE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uKfjEFB3WE .container {
    flex-wrap: nowrap;
  }
}
.cid-uKfjEFB3WE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKfjEFB3WE .dropdown-menu,
.cid-uKfjEFB3WE .navbar.opened {
  background: #611750 !important;
}
.cid-uKfjEFB3WE .nav-item:focus,
.cid-uKfjEFB3WE .nav-link:focus {
  outline: none;
}
.cid-uKfjEFB3WE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKfjEFB3WE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKfjEFB3WE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKfjEFB3WE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKfjEFB3WE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKfjEFB3WE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKfjEFB3WE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #611750;
}
.cid-uKfjEFB3WE .navbar.opened {
  transition: all 0.3s;
}
.cid-uKfjEFB3WE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKfjEFB3WE .navbar .navbar-logo img {
  width: auto;
}
.cid-uKfjEFB3WE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKfjEFB3WE .navbar.collapsed {
  justify-content: center;
}
.cid-uKfjEFB3WE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKfjEFB3WE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKfjEFB3WE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKfjEFB3WE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKfjEFB3WE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKfjEFB3WE .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-uKfjEFB3WE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKfjEFB3WE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKfjEFB3WE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKfjEFB3WE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKfjEFB3WE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKfjEFB3WE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKfjEFB3WE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKfjEFB3WE .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-uKfjEFB3WE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKfjEFB3WE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKfjEFB3WE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKfjEFB3WE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKfjEFB3WE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKfjEFB3WE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKfjEFB3WE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKfjEFB3WE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKfjEFB3WE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKfjEFB3WE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKfjEFB3WE .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-uKfjEFB3WE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKfjEFB3WE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKfjEFB3WE .dropdown-item.active,
.cid-uKfjEFB3WE .dropdown-item:active {
  background-color: transparent;
}
.cid-uKfjEFB3WE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKfjEFB3WE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKfjEFB3WE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKfjEFB3WE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #611750;
}
.cid-uKfjEFB3WE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKfjEFB3WE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKfjEFB3WE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKfjEFB3WE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKfjEFB3WE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKfjEFB3WE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKfjEFB3WE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKfjEFB3WE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfjEFB3WE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfjEFB3WE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKfjEFB3WE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfjEFB3WE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKfjEFB3WE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKfjEFB3WE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfjEFB3WE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKfjEFB3WE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKfjEFB3WE .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-uKfjEFB3WE .navbar {
    height: 70px;
  }
  .cid-uKfjEFB3WE .navbar.opened {
    height: auto;
  }
  .cid-uKfjEFB3WE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfjGk9VIw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6f3f7c;
}
.cid-uKfjGk9VIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfjGk9VIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfjGk9VIw .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .container {
    padding: 0 16px;
  }
}
.cid-uKfjGk9VIw .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-uKfjGk9VIw .row {
    padding: 45px 4px;
  }
}
.cid-uKfjGk9VIw .row .card {
  justify-content: center;
}
.cid-uKfjGk9VIw .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-uKfjGk9VIw .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uKfjGk9VIw .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKfjGk9VIw .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-uKfjGk9VIw .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-uKfjGk9VIw .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uKfjGk9VIw .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKfjGk9VIw .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uKfjGk9VIw .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uKfjGk9VIw .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #6f3f7c;
}
@media (max-width: 1440px) {
  .cid-uKfjGk9VIw .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-uKfjGk9VIw .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uKfjGk9VIw .image-wrapper img {
    height: 350px;
  }
}
.cid-uKfjGk9VIw .mbr-section-subtitle {
  color: #d1cece;
}
.cid-uKfjGk9VIw .mbr-section-title {
  color: #192227;
}
.cid-uKfjGk9VIw .mbr-text {
  color: #192227;
}
.cid-uKfjGk9VIw .mbr-text,
.cid-uKfjGk9VIw .mbr-section-btn {
  color: #000000;
}
.cid-uKfjEGAtLd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b97ecd;
  overflow: hidden;
}
.cid-uKfjEGAtLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfjEGAtLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfjEGAtLd .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #611750, #b97ecd);
  box-shadow: 10px 10px 19px #b97ecd, -10px -10px 19px #f7fff7;
}
@media (max-width: 767px) {
  .cid-uKfjEGAtLd .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uKfjEGAtLd .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uKfjEGAtLd .card-title {
  color: #e6eaf1;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfjEGAtLd .card-title {
    margin-bottom: 20px;
  }
}
.cid-uKfjEGAtLd .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uKfjEGAtLd .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uKfjEGAtLd .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uKfjEH2v6x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uKfjEH2v6x .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #263d5a;
  margin-bottom: 2rem;
}
.cid-uKfjEH2v6x .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKfjEH2v6x .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uKfjEH2v6x .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKfjEH2v6x .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uKfjEH2v6x .row {
  justify-content: center;
}
.cid-uKfjEH2v6x .card-text {
  color: #050f0f;
}
.cid-uKfjEH2v6x .card-title,
.cid-uKfjEH2v6x .iconfont-wrapper {
  color: #050f0f;
}
.cid-uKfjEH2v6x .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uKfjEH2v6x .mbr-section-title {
  color: #f7fff7;
}
.cid-uKfjEHtJJT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uKfjEHtJJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfjEHtJJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfjEHtJJT .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uKfjEHtJJT a {
  position: relative;
  width: fit-content;
}
.cid-uKfjEHtJJT a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uKfjEHtJJT a:hover:before {
  width: 0;
}
.cid-uKfjEHtJJT .copyright {
  color: #ffffff;
}
.cid-uKfjEHtJJT .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKfjEHtJJT .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uKfjEHtJJT .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uKfjEHtJJT .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uKfjEHtJJT .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKfjEHtJJT .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uKfjEHtJJT p {
    text-align: center;
  }
}
