body {
  font-family: 'Montserrat', sans-serif;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #160830 !important;
}
.bg-success {
  background-color: #8e6aa8 !important;
}
.bg-info {
  background-color: #e37e00 !important;
}
.bg-warning {
  background-color: #211915 !important;
}
.bg-danger {
  background-color: #ed155a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #160830 !important;
  border-color: #160830 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #160830 !important;
  border-color: #160830 !important;
  box-shadow: #160830 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #271e5a !important;
  border-color: #271e5a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #271e5a !important;
  border-color: #271e5a !important;
  box-shadow: #271e5a 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0b0819 !important;
  border-color: #0b0819 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e37e00 !important;
  border-color: #e37e00 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #e37e00 !important;
  border-color: #e37e00 !important;
  box-shadow: #e37e00 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8c4e00 !important;
  border-color: #8c4e00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8e6aa8 !important;
  border-color: #8e6aa8 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #8e6aa8 !important;
  border-color: #8e6aa8 !important;
  box-shadow: #8e6aa8 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #624576 !important;
  border-color: #624576 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #211915 !important;
  border-color: #211915 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #211915 !important;
  border-color: #211915 !important;
  box-shadow: #211915 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ed155a !important;
  border-color: #ed155a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ed155a !important;
  border-color: #ed155a !important;
  box-shadow: #ed155a 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9f0c3b !important;
  border-color: #9f0c3b !important;
}
.btn-white {
  color: #160830 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #160830 !important;
  box-shadow: #160830 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #160830;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #160830 !important;
  border-color: #160830 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #271e5a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0b0819 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #271e5a !important;
  border-color: #271e5a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e37e00;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8c4e00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e37e00 !important;
  border-color: #e37e00 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e6aa8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #624576 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8e6aa8 !important;
  border-color: #8e6aa8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #211915;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #211915 !important;
  border-color: #211915 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed155a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #9f0c3b !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ed155a !important;
  border-color: #ed155a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #160830 !important;
}
.text-secondary {
  color: #271e5a !important;
}
.text-success {
  color: #8e6aa8 !important;
}
.text-info {
  color: #e37e00 !important;
}
.text-warning {
  color: #211915 !important;
}
.text-danger {
  color: #ed155a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #06040d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5a3f6d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #7d4500 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #910b36 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #160830;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e37e00;
}
.alert-warning {
  background-color: #211915;
}
.alert-danger {
  background-color: #ed155a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #160830;
  border-color: #160830;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #160830;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c4acf1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cbbad7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffdcb0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9cac3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fcd2e0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #160830 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #160830;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.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 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #160830;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #160830;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #160830;
  border-bottom-color: #160830;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #160830 !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: #271e5a !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='%23160830' %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-sQknKIJ5xL .navbar-dropdown {
  position: relative !important;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  position: absolute !important;
}
.cid-sQknKIJ5xL .btn {
  padding: 0.3rem 2rem;
}
.cid-sQknKIJ5xL .nav-link {
  position: relative;
}
.cid-sQknKIJ5xL .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-sQknKIJ5xL .nav-link:hover:before {
  width: 100%;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQknKIJ5xL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQknKIJ5xL .dropdown-item:hover,
.cid-sQknKIJ5xL .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-sQknKIJ5xL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQknKIJ5xL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQknKIJ5xL .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQknKIJ5xL .container {
  display: flex;
  margin: auto;
}
.cid-sQknKIJ5xL .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown-menu,
.cid-sQknKIJ5xL .navbar.opened {
  background: #ffffff !important;
}
.cid-sQknKIJ5xL .nav-item:focus,
.cid-sQknKIJ5xL .nav-link:focus {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQknKIJ5xL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQknKIJ5xL .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sQknKIJ5xL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQknKIJ5xL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQknKIJ5xL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar.collapsed {
  justify-content: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQknKIJ5xL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQknKIJ5xL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQknKIJ5xL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQknKIJ5xL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQknKIJ5xL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQknKIJ5xL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQknKIJ5xL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQknKIJ5xL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQknKIJ5xL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown-item.active,
.cid-sQknKIJ5xL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQknKIJ5xL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQknKIJ5xL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQknKIJ5xL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQknKIJ5xL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQknKIJ5xL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sQknKIJ5xL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar {
    height: 70px;
  }
  .cid-sQknKIJ5xL .navbar.opened {
    height: auto;
  }
  .cid-sQknKIJ5xL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQxcYZFvfM {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tQxcYZFvfM .mbr-section-title {
  color: #160830;
}
.cid-tQxcYZFvfM .mbr-text,
.cid-tQxcYZFvfM .mbr-section-btn {
  color: #160830;
}
.cid-tQxcYZFvfM .mbr-section-subtitle {
  color: #ed155a;
}
.cid-tQxcYZFvfM img {
  border-radius: 2rem;
}
.cid-tQxcYZFvfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQxcYZFvfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQwZJujqyZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQwZJujqyZ .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tQwZJujqyZ .card-box {
  z-index: 2;
  position: relative;
}
.cid-tQwZJujqyZ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tQwZJujqyZ .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tQwZJujqyZ .card-title,
.cid-tQwZJujqyZ .card-text {
  transition: all 0.3s;
}
.cid-tQwZJujqyZ .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #021938;
  transition: all 0.3s;
}
.cid-tQwZJujqyZ .card-wrapper:hover {
  background: #ed155a;
}
.cid-tQwZJujqyZ .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tQwZJujqyZ .card-wrapper:hover .card-title,
.cid-tQwZJujqyZ .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tQwZJujqyZ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tQwZJujqyZ .card-title,
.cid-tQwZJujqyZ .iconfont-wrapper {
  color: #f7f4fd;
}
.cid-tQwZJujqyZ .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tQwZJujqyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQwZJujqyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQwZJujqyZ .mbr-section-title {
  color: #ed155a;
}
.cid-tQx5Q8o68X {
  background-image: url("../../../assets/images/crm-fondo-1920x1280.jpg");
}
.cid-tQx5Q8o68X .row {
  flex-direction: row-reverse;
}
.cid-tQx5Q8o68X .mbr-section-title {
  color: #ffffff;
}
.cid-tQx5Q8o68X .mbr-text,
.cid-tQx5Q8o68X .mbr-section-btn {
  color: #f7f4fd;
}
.cid-tQx5Q8o68X .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tQx5Q8o68X img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tQx5Q8o68X .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tQx5Q8o68X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQx5Q8o68X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSB0KpwvEU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tSB0KpwvEU .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSB0KpwvEU .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSB0KpwvEU .card-title,
.cid-tSB0KpwvEU .card-text {
  transition: all 0.3s;
}
.cid-tSB0KpwvEU .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSB0KpwvEU .card-wrapper:hover {
  background: #28196c;
}
.cid-tSB0KpwvEU .card-wrapper:hover .card-title,
.cid-tSB0KpwvEU .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSB0KpwvEU .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSB0KpwvEU .card-title,
.cid-tSB0KpwvEU .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tSB0KpwvEU .card-text {
  color: #353535;
}
.cid-tSB0KpwvEU .card-text,
.cid-tSB0KpwvEU .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tSB0KpwvEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSB0KpwvEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSB0KpwvEU .mbr-section-title {
  color: #000000;
}
.cid-tSB0KpwvEU .mbr-section-subtitle {
  color: #232323;
}
.cid-tSB0Or8gWf {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tSB0Or8gWf .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSB0Or8gWf .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSB0Or8gWf .card-title,
.cid-tSB0Or8gWf .card-text {
  transition: all 0.3s;
}
.cid-tSB0Or8gWf .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSB0Or8gWf .card-wrapper:hover {
  background: #28196c;
}
.cid-tSB0Or8gWf .card-wrapper:hover .card-title,
.cid-tSB0Or8gWf .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSB0Or8gWf .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSB0Or8gWf .card-title,
.cid-tSB0Or8gWf .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tSB0Or8gWf .card-text {
  color: #353535;
}
.cid-tSB0Or8gWf .card-text,
.cid-tSB0Or8gWf .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tSB0Or8gWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSB0Or8gWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAabNagun6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1156.jpg");
}
.cid-uAabNagun6 .row {
  justify-content: space-between;
}
.cid-uAabNagun6 .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uAabNagun6 .form-control:focus,
.cid-uAabNagun6 .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uAabNagun6 .form-group {
  margin-bottom: 1rem;
}
.cid-uAabNagun6 input::-webkit-input-placeholder,
.cid-uAabNagun6 textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uAabNagun6 input:-moz-placeholder,
.cid-uAabNagun6 textarea:-moz-placeholder {
  color: #353535;
}
.cid-uAabNagun6 .jq-selectbox li,
.cid-uAabNagun6 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAabNagun6 .jq-selectbox li:hover,
.cid-uAabNagun6 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAabNagun6 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uAabNagun6 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uAabNagun6 .mbr-text {
  color: #767676;
}
.cid-uAabNagun6 .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uAabNagun6 .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uAabNagun6 .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uAabNagun6 .form-block {
    padding: 1rem;
  }
}
.cid-uAabNagun6 H4 {
  color: #232323;
}
.cid-uAabNagun6 .mbr-section-title,
.cid-uAabNagun6 .mbr-section-btn {
  color: #ffffff;
}
.cid-uAabNagun6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAabNagun6 .form-text {
  color: #353535;
}
.cid-uAabNagun6 .text {
  color: #ffffff;
}
.cid-uAabNagun6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAabNagun6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tREnOTBZev {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tREnOTBZev .item-img {
  position: relative;
}
.cid-tREnOTBZev .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tREnOTBZev .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tREnOTBZev .btn-tag:hover,
.cid-tREnOTBZev .btn-tag:focus {
  box-shadow: none;
}
.cid-tREnOTBZev img,
.cid-tREnOTBZev .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tREnOTBZev .item:focus,
.cid-tREnOTBZev span:focus {
  outline: none;
}
.cid-tREnOTBZev .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tREnOTBZev .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tREnOTBZev .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tREnOTBZev .mbr-section-title {
  color: #232323;
}
.cid-tREnOTBZev .mbr-text,
.cid-tREnOTBZev .mbr-section-btn {
  color: #353535;
}
.cid-tREnOTBZev .item-title {
  color: #353535;
}
.cid-tQx7hSfhMi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tQx7hSfhMi .google-map {
  height: 30rem;
  position: relative;
}
.cid-tQx7hSfhMi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQx7hSfhMi .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tQx7hSfhMi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQx7hSfhMi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQx7hSfhMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQx7hSfhMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQx7y4eDPC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tQx7y4eDPC .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tQx7y4eDPC .btn-social,
.cid-tQx7y4eDPC .mbr-section-title {
  color: #57468b;
}
.cid-tQx7y4eDPC .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tQx7y4eDPC .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tQx7y4eDPC .soc-item:hover {
  background: #ffffff;
}
.cid-tQx7y4eDPC .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tQx7y4eDPC .align-left,
  .cid-tQx7y4eDPC .align-right {
    text-align: center;
  }
  .cid-tQx7y4eDPC .social-list {
    justify-content: center;
  }
  .cid-tQx7y4eDPC .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tQx7y4eDPC .mbr-text {
  color: #ffffff;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  position: relative !important;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  position: absolute !important;
}
.cid-sQknKIJ5xL .btn {
  padding: 0.3rem 2rem;
}
.cid-sQknKIJ5xL .nav-link {
  position: relative;
}
.cid-sQknKIJ5xL .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-sQknKIJ5xL .nav-link:hover:before {
  width: 100%;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQknKIJ5xL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQknKIJ5xL .dropdown-item:hover,
.cid-sQknKIJ5xL .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-sQknKIJ5xL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQknKIJ5xL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQknKIJ5xL .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQknKIJ5xL .container {
  display: flex;
  margin: auto;
}
.cid-sQknKIJ5xL .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown-menu,
.cid-sQknKIJ5xL .navbar.opened {
  background: #ffffff !important;
}
.cid-sQknKIJ5xL .nav-item:focus,
.cid-sQknKIJ5xL .nav-link:focus {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQknKIJ5xL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQknKIJ5xL .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sQknKIJ5xL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQknKIJ5xL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQknKIJ5xL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar.collapsed {
  justify-content: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQknKIJ5xL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQknKIJ5xL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQknKIJ5xL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQknKIJ5xL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQknKIJ5xL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQknKIJ5xL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQknKIJ5xL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQknKIJ5xL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQknKIJ5xL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown-item.active,
.cid-sQknKIJ5xL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQknKIJ5xL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQknKIJ5xL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQknKIJ5xL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQknKIJ5xL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQknKIJ5xL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sQknKIJ5xL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar {
    height: 70px;
  }
  .cid-sQknKIJ5xL .navbar.opened {
    height: auto;
  }
  .cid-sQknKIJ5xL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRb9fMvDnG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tRb9fMvDnG .mbr-section-title {
  color: #ed155a;
}
.cid-tRb9fMvDnG .mbr-text,
.cid-tRb9fMvDnG .mbr-section-btn {
  color: #160830;
}
.cid-tRb9fMvDnG .mbr-section-subtitle {
  color: #160830;
}
.cid-tRb9fMvDnG img {
  border-radius: 2rem;
}
.cid-tRb9fMvDnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRb9fMvDnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbb9f93C4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRbb9f93C4 blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tRbb9f93C4 .quote {
  color: #e43f3f;
}
.cid-tRbb9f93C4 .quote,
.cid-tRbb9f93C4 blockquote {
  color: #353535;
}
.cid-tRbb9f93C4 .mbr-section-title {
  text-align: center;
}
.cid-tRbdY3bzkp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRbdY3bzkp .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRbdY3bzkp .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRbdY3bzkp .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRbdY3bzkp .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRbdY3bzkp .card-title,
.cid-tRbdY3bzkp .card-text {
  transition: all 0.3s;
}
.cid-tRbdY3bzkp .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRbdY3bzkp .card-wrapper:hover {
  background: #28196c;
}
.cid-tRbdY3bzkp .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRbdY3bzkp .card-wrapper:hover .card-title,
.cid-tRbdY3bzkp .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRbdY3bzkp .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRbdY3bzkp .card-title,
.cid-tRbdY3bzkp .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRbdY3bzkp .card-text {
  color: #ffffff;
}
.cid-tRbdY3bzkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbdY3bzkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbdY3bzkp .mbr-section-title {
  color: #ed155a;
}
.cid-tRbe1vIiIP {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tRbe1vIiIP .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRbe1vIiIP .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRbe1vIiIP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRbe1vIiIP .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRbe1vIiIP .card-title,
.cid-tRbe1vIiIP .card-text {
  transition: all 0.3s;
}
.cid-tRbe1vIiIP .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRbe1vIiIP .card-wrapper:hover {
  background: #28196c;
}
.cid-tRbe1vIiIP .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRbe1vIiIP .card-wrapper:hover .card-title,
.cid-tRbe1vIiIP .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRbe1vIiIP .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRbe1vIiIP .card-title,
.cid-tRbe1vIiIP .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRbe1vIiIP .card-text {
  color: #ffffff;
}
.cid-tRbe1vIiIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbe1vIiIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbmmqChlX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tRbmmqChlX .row {
  flex-direction: row-reverse;
}
.cid-tRbmmqChlX .mbr-section-title {
  color: #ed155a;
}
.cid-tRbmmqChlX .mbr-text,
.cid-tRbmmqChlX .mbr-section-btn {
  color: #f4f4f4;
}
.cid-tRbmmqChlX .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tRbmmqChlX img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tRbmmqChlX .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tRbmmqChlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbmmqChlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRbmy5jxlI {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRbmy5jxlI .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tRbmy5jxlI .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRbmy5jxlI .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRbmy5jxlI .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tRbmy5jxlI .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tRbmy5jxlI .card-title,
.cid-tRbmy5jxlI .card-box {
  color: #000000;
}
.cid-tRbmy5jxlI .main-title,
.cid-tRbmy5jxlI .title-col {
  text-align: center;
  color: #000000;
}
.cid-tRbmy5jxlI .card-text {
  color: #353535;
}
.cid-tRbmy5jxlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbmy5jxlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRcbCRYmsh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRcbCRYmsh .mbr-section-title {
  color: #000000;
}
.cid-tRcbCRYmsh .mbr-section-subtitle {
  color: #000000;
}
.cid-tRcbCRYmsh .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tRcbCRYmsh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRcbCRYmsh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRc7AFLFRR {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tRc7AFLFRR .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tRc7AFLFRR .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tRc7AFLFRR .image-block:hover:before {
  opacity: 0.6;
}
.cid-tRc7AFLFRR .image-block:hover .wrap {
  opacity: 1;
}
.cid-tRc7AFLFRR .image-block:hover img {
  transform: scale(1.1);
}
.cid-tRc7AFLFRR .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tRc7AFLFRR img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRc7AFLFRR .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tRc7AFLFRR .wrap {
    opacity: 1 !important;
  }
  .cid-tRc7AFLFRR .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tRbVE32DFE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRbVE32DFE .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRbVE32DFE .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRbVE32DFE img {
  width: 140px;
  margin: auto;
}
.cid-tRbVE32DFE .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tRbVE32DFE .card-wrapper:hover {
  background: transparent;
}
.cid-tRbVE32DFE .card-title,
.cid-tRbVE32DFE .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tRbVE32DFE .main-title,
.cid-tRbVE32DFE .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tRbVE32DFE .card-text {
  color: #bbbbbb;
}
.cid-tRbVE32DFE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRbVE32DFE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRrMafOK5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uBRrMafOK5 .row {
  justify-content: space-between;
}
.cid-uBRrMafOK5 .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRrMafOK5 .form-control:focus,
.cid-uBRrMafOK5 .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRrMafOK5 .form-group {
  margin-bottom: 1rem;
}
.cid-uBRrMafOK5 input::-webkit-input-placeholder,
.cid-uBRrMafOK5 textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRrMafOK5 input:-moz-placeholder,
.cid-uBRrMafOK5 textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRrMafOK5 .jq-selectbox li,
.cid-uBRrMafOK5 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRrMafOK5 .jq-selectbox li:hover,
.cid-uBRrMafOK5 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRrMafOK5 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRrMafOK5 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRrMafOK5 .mbr-text {
  color: #767676;
}
.cid-uBRrMafOK5 .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRrMafOK5 .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRrMafOK5 .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRrMafOK5 .form-block {
    padding: 1rem;
  }
}
.cid-uBRrMafOK5 H4 {
  color: #232323;
}
.cid-uBRrMafOK5 .mbr-section-title,
.cid-uBRrMafOK5 .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRrMafOK5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRrMafOK5 .form-text {
  color: #353535;
}
.cid-uBRrMafOK5 .text {
  color: #ffffff;
}
.cid-uBRrMafOK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRrMafOK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQx7y4eDPC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tQx7y4eDPC .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tQx7y4eDPC .btn-social,
.cid-tQx7y4eDPC .mbr-section-title {
  color: #57468b;
}
.cid-tQx7y4eDPC .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tQx7y4eDPC .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tQx7y4eDPC .soc-item:hover {
  background: #ffffff;
}
.cid-tQx7y4eDPC .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tQx7y4eDPC .align-left,
  .cid-tQx7y4eDPC .align-right {
    text-align: center;
  }
  .cid-tQx7y4eDPC .social-list {
    justify-content: center;
  }
  .cid-tQx7y4eDPC .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tQx7y4eDPC .mbr-text {
  color: #ffffff;
}
.cid-tRyG5Y1TUw .navbar-dropdown {
  position: relative !important;
}
.cid-tRyG5Y1TUw .navbar-dropdown {
  position: absolute !important;
}
.cid-tRyG5Y1TUw .btn {
  padding: 0.3rem 2rem;
}
.cid-tRyG5Y1TUw .nav-link {
  position: relative;
}
.cid-tRyG5Y1TUw .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-tRyG5Y1TUw .nav-link:hover:before {
  width: 100%;
}
.cid-tRyG5Y1TUw .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-tRyG5Y1TUw .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRyG5Y1TUw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRyG5Y1TUw .dropdown-item:hover,
.cid-tRyG5Y1TUw .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-tRyG5Y1TUw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRyG5Y1TUw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRyG5Y1TUw .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tRyG5Y1TUw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRyG5Y1TUw .container {
  display: flex;
  margin: auto;
}
.cid-tRyG5Y1TUw .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRyG5Y1TUw .dropdown-menu,
.cid-tRyG5Y1TUw .navbar.opened {
  background: #ffffff !important;
}
.cid-tRyG5Y1TUw .nav-item:focus,
.cid-tRyG5Y1TUw .nav-link:focus {
  outline: none;
}
.cid-tRyG5Y1TUw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRyG5Y1TUw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRyG5Y1TUw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRyG5Y1TUw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRyG5Y1TUw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRyG5Y1TUw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRyG5Y1TUw .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRyG5Y1TUw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tRyG5Y1TUw .navbar.opened {
  transition: all 0.3s;
}
.cid-tRyG5Y1TUw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRyG5Y1TUw .navbar .navbar-logo img {
  width: auto;
}
.cid-tRyG5Y1TUw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRyG5Y1TUw .navbar.collapsed {
  justify-content: center;
}
.cid-tRyG5Y1TUw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRyG5Y1TUw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRyG5Y1TUw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tRyG5Y1TUw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRyG5Y1TUw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRyG5Y1TUw .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-tRyG5Y1TUw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRyG5Y1TUw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRyG5Y1TUw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRyG5Y1TUw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRyG5Y1TUw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRyG5Y1TUw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRyG5Y1TUw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRyG5Y1TUw .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-tRyG5Y1TUw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRyG5Y1TUw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRyG5Y1TUw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRyG5Y1TUw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRyG5Y1TUw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRyG5Y1TUw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRyG5Y1TUw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRyG5Y1TUw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRyG5Y1TUw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRyG5Y1TUw .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-tRyG5Y1TUw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRyG5Y1TUw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRyG5Y1TUw .dropdown-item.active,
.cid-tRyG5Y1TUw .dropdown-item:active {
  background-color: transparent;
}
.cid-tRyG5Y1TUw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRyG5Y1TUw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRyG5Y1TUw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRyG5Y1TUw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRyG5Y1TUw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRyG5Y1TUw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRyG5Y1TUw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRyG5Y1TUw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRyG5Y1TUw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRyG5Y1TUw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-tRyG5Y1TUw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRyG5Y1TUw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRyG5Y1TUw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRyG5Y1TUw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRyG5Y1TUw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRyG5Y1TUw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRyG5Y1TUw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRyG5Y1TUw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRyG5Y1TUw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRyG5Y1TUw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRyG5Y1TUw .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-tRyG5Y1TUw .navbar {
    height: 70px;
  }
  .cid-tRyG5Y1TUw .navbar.opened {
    height: auto;
  }
  .cid-tRyG5Y1TUw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRyG5Z5yMs {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tRyG5Z5yMs .mbr-section-title {
  color: #ed155a;
}
.cid-tRyG5Z5yMs .mbr-text,
.cid-tRyG5Z5yMs .mbr-section-btn {
  color: #160830;
}
.cid-tRyG5Z5yMs .mbr-section-subtitle {
  color: #160830;
}
.cid-tRyG5Z5yMs img {
  border-radius: 2rem;
}
.cid-tRyG5Z5yMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG5Z5yMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG5Zw2P7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRyG5Zw2P7 blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tRyG5Zw2P7 .quote {
  color: #e43f3f;
}
.cid-tRyG5Zw2P7 .quote,
.cid-tRyG5Zw2P7 blockquote {
  color: #353535;
}
.cid-tRyG5Zw2P7 .mbr-section-title {
  text-align: center;
}
.cid-tRyG5ZUevg {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRyG5ZUevg .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRyG5ZUevg .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRyG5ZUevg .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRyG5ZUevg .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRyG5ZUevg .card-title,
.cid-tRyG5ZUevg .card-text {
  transition: all 0.3s;
}
.cid-tRyG5ZUevg .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRyG5ZUevg .card-wrapper:hover {
  background: #28196c;
}
.cid-tRyG5ZUevg .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRyG5ZUevg .card-wrapper:hover .card-title,
.cid-tRyG5ZUevg .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRyG5ZUevg .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRyG5ZUevg .card-title,
.cid-tRyG5ZUevg .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRyG5ZUevg .card-text {
  color: #ffffff;
}
.cid-tRyG5ZUevg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG5ZUevg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG5ZUevg .mbr-section-title {
  color: #ed155a;
}
.cid-tRyG60FoyF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tRyG60FoyF .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRyG60FoyF .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRyG60FoyF .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRyG60FoyF .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRyG60FoyF .card-title,
.cid-tRyG60FoyF .card-text {
  transition: all 0.3s;
}
.cid-tRyG60FoyF .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRyG60FoyF .card-wrapper:hover {
  background: #28196c;
}
.cid-tRyG60FoyF .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRyG60FoyF .card-wrapper:hover .card-title,
.cid-tRyG60FoyF .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRyG60FoyF .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRyG60FoyF .card-title,
.cid-tRyG60FoyF .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRyG60FoyF .card-text {
  color: #ffffff;
}
.cid-tRyG60FoyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG60FoyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG61lqtq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tRyG61lqtq .row {
  flex-direction: row-reverse;
}
.cid-tRyG61lqtq .mbr-section-title {
  color: #ed155a;
}
.cid-tRyG61lqtq .mbr-text,
.cid-tRyG61lqtq .mbr-section-btn {
  color: #ffffff;
}
.cid-tRyG61lqtq .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tRyG61lqtq img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tRyG61lqtq .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tRyG61lqtq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG61lqtq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG61UPde {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRyG61UPde .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tRyG61UPde .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRyG61UPde .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRyG61UPde .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tRyG61UPde .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tRyG61UPde .card-title,
.cid-tRyG61UPde .card-box {
  color: #000000;
}
.cid-tRyG61UPde .main-title,
.cid-tRyG61UPde .title-col {
  text-align: center;
  color: #000000;
}
.cid-tRyG61UPde .card-text {
  color: #353535;
}
.cid-tRyG61UPde .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG61UPde .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG62N7Ir {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRyG62N7Ir .mbr-section-title {
  color: #000000;
}
.cid-tRyG62N7Ir .mbr-section-subtitle {
  color: #000000;
}
.cid-tRyG62N7Ir .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tRyG62N7Ir .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG62N7Ir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG63n5CF {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tRyG63n5CF .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tRyG63n5CF .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tRyG63n5CF .image-block:hover:before {
  opacity: 0.6;
}
.cid-tRyG63n5CF .image-block:hover .wrap {
  opacity: 1;
}
.cid-tRyG63n5CF .image-block:hover img {
  transform: scale(1.1);
}
.cid-tRyG63n5CF .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tRyG63n5CF img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRyG63n5CF .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tRyG63n5CF .wrap {
    opacity: 1 !important;
  }
  .cid-tRyG63n5CF .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tRyG640vjt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRyG640vjt .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRyG640vjt .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRyG640vjt img {
  width: 140px;
  margin: auto;
}
.cid-tRyG640vjt .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tRyG640vjt .card-wrapper:hover {
  background: transparent;
}
.cid-tRyG640vjt .card-title,
.cid-tRyG640vjt .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tRyG640vjt .main-title,
.cid-tRyG640vjt .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tRyG640vjt .card-text {
  color: #bbbbbb;
}
.cid-tRyG640vjt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRyG640vjt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRs9Hwvyy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-uBRs9Hwvyy .row {
  justify-content: space-between;
}
.cid-uBRs9Hwvyy .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRs9Hwvyy .form-control:focus,
.cid-uBRs9Hwvyy .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRs9Hwvyy .form-group {
  margin-bottom: 1rem;
}
.cid-uBRs9Hwvyy input::-webkit-input-placeholder,
.cid-uBRs9Hwvyy textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRs9Hwvyy input:-moz-placeholder,
.cid-uBRs9Hwvyy textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRs9Hwvyy .jq-selectbox li,
.cid-uBRs9Hwvyy .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRs9Hwvyy .jq-selectbox li:hover,
.cid-uBRs9Hwvyy .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRs9Hwvyy .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRs9Hwvyy .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRs9Hwvyy .mbr-text {
  color: #767676;
}
.cid-uBRs9Hwvyy .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRs9Hwvyy .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRs9Hwvyy .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRs9Hwvyy .form-block {
    padding: 1rem;
  }
}
.cid-uBRs9Hwvyy H4 {
  color: #232323;
}
.cid-uBRs9Hwvyy .mbr-section-title,
.cid-uBRs9Hwvyy .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRs9Hwvyy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRs9Hwvyy .form-text {
  color: #353535;
}
.cid-uBRs9Hwvyy .text {
  color: #ffffff;
}
.cid-uBRs9Hwvyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRs9Hwvyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRyG65tfAC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tRyG65tfAC .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tRyG65tfAC .btn-social,
.cid-tRyG65tfAC .mbr-section-title {
  color: #57468b;
}
.cid-tRyG65tfAC .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tRyG65tfAC .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRyG65tfAC .soc-item:hover {
  background: #ffffff;
}
.cid-tRyG65tfAC .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tRyG65tfAC .align-left,
  .cid-tRyG65tfAC .align-right {
    text-align: center;
  }
  .cid-tRyG65tfAC .social-list {
    justify-content: center;
  }
  .cid-tRyG65tfAC .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tRyG65tfAC .mbr-text {
  color: #ffffff;
}
.cid-tRD1thqFpC .navbar-dropdown {
  position: relative !important;
}
.cid-tRD1thqFpC .navbar-dropdown {
  position: absolute !important;
}
.cid-tRD1thqFpC .btn {
  padding: 0.3rem 2rem;
}
.cid-tRD1thqFpC .nav-link {
  position: relative;
}
.cid-tRD1thqFpC .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-tRD1thqFpC .nav-link:hover:before {
  width: 100%;
}
.cid-tRD1thqFpC .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-tRD1thqFpC .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRD1thqFpC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRD1thqFpC .dropdown-item:hover,
.cid-tRD1thqFpC .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-tRD1thqFpC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRD1thqFpC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRD1thqFpC .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tRD1thqFpC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRD1thqFpC .container {
  display: flex;
  margin: auto;
}
.cid-tRD1thqFpC .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRD1thqFpC .dropdown-menu,
.cid-tRD1thqFpC .navbar.opened {
  background: #ffffff !important;
}
.cid-tRD1thqFpC .nav-item:focus,
.cid-tRD1thqFpC .nav-link:focus {
  outline: none;
}
.cid-tRD1thqFpC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRD1thqFpC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRD1thqFpC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRD1thqFpC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRD1thqFpC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRD1thqFpC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRD1thqFpC .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRD1thqFpC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tRD1thqFpC .navbar.opened {
  transition: all 0.3s;
}
.cid-tRD1thqFpC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRD1thqFpC .navbar .navbar-logo img {
  width: auto;
}
.cid-tRD1thqFpC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRD1thqFpC .navbar.collapsed {
  justify-content: center;
}
.cid-tRD1thqFpC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRD1thqFpC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRD1thqFpC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tRD1thqFpC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRD1thqFpC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRD1thqFpC .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-tRD1thqFpC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRD1thqFpC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRD1thqFpC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRD1thqFpC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRD1thqFpC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRD1thqFpC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRD1thqFpC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRD1thqFpC .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-tRD1thqFpC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRD1thqFpC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRD1thqFpC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRD1thqFpC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRD1thqFpC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRD1thqFpC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRD1thqFpC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRD1thqFpC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRD1thqFpC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRD1thqFpC .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-tRD1thqFpC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRD1thqFpC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRD1thqFpC .dropdown-item.active,
.cid-tRD1thqFpC .dropdown-item:active {
  background-color: transparent;
}
.cid-tRD1thqFpC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRD1thqFpC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRD1thqFpC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRD1thqFpC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRD1thqFpC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRD1thqFpC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRD1thqFpC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRD1thqFpC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRD1thqFpC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRD1thqFpC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-tRD1thqFpC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRD1thqFpC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRD1thqFpC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRD1thqFpC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRD1thqFpC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRD1thqFpC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRD1thqFpC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRD1thqFpC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRD1thqFpC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRD1thqFpC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRD1thqFpC .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-tRD1thqFpC .navbar {
    height: 70px;
  }
  .cid-tRD1thqFpC .navbar.opened {
    height: auto;
  }
  .cid-tRD1thqFpC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRD1tiPSF4 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tRD1tiPSF4 .mbr-section-title {
  color: #ed155a;
}
.cid-tRD1tiPSF4 .mbr-text,
.cid-tRD1tiPSF4 .mbr-section-btn {
  color: #160830;
}
.cid-tRD1tiPSF4 .mbr-section-subtitle {
  color: #160830;
}
.cid-tRD1tiPSF4 img {
  border-radius: 2rem;
}
.cid-tRD1tiPSF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tiPSF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tk4Izw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRD1tk4Izw blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tRD1tk4Izw .quote {
  color: #e43f3f;
}
.cid-tRD1tk4Izw .quote,
.cid-tRD1tk4Izw blockquote {
  color: #353535;
}
.cid-tRD1tk4Izw .mbr-section-title {
  text-align: center;
  color: #160830;
}
.cid-tRD1tk4Izw .mbr-text {
  text-align: left;
}
.cid-tRD1tkClBm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRD1tkClBm .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRD1tkClBm .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRD1tkClBm .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRD1tkClBm .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRD1tkClBm .card-title,
.cid-tRD1tkClBm .card-text {
  transition: all 0.3s;
}
.cid-tRD1tkClBm .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRD1tkClBm .card-wrapper:hover {
  background: #160830;
}
.cid-tRD1tkClBm .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRD1tkClBm .card-wrapper:hover .card-title,
.cid-tRD1tkClBm .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRD1tkClBm .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRD1tkClBm .card-title,
.cid-tRD1tkClBm .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRD1tkClBm .card-text {
  color: #ffffff;
}
.cid-tRD1tkClBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tkClBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tkClBm .mbr-section-title {
  color: #ed155a;
}
.cid-tRD1tlRs9M {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tRD1tlRs9M .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRD1tlRs9M .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRD1tlRs9M .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRD1tlRs9M .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRD1tlRs9M .card-title,
.cid-tRD1tlRs9M .card-text {
  transition: all 0.3s;
}
.cid-tRD1tlRs9M .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRD1tlRs9M .card-wrapper:hover {
  background: #160830;
}
.cid-tRD1tlRs9M .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRD1tlRs9M .card-wrapper:hover .card-title,
.cid-tRD1tlRs9M .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRD1tlRs9M .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRD1tlRs9M .card-title,
.cid-tRD1tlRs9M .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRD1tlRs9M .card-text {
  color: #ffffff;
}
.cid-tRD1tlRs9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tlRs9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tmLATT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tRD1tmLATT .row {
  flex-direction: row-reverse;
}
.cid-tRD1tmLATT .mbr-section-title {
  color: #ed155a;
}
.cid-tRD1tmLATT .mbr-text,
.cid-tRD1tmLATT .mbr-section-btn {
  color: #ffffff;
}
.cid-tRD1tmLATT .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tRD1tmLATT img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tRD1tmLATT .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tRD1tmLATT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tmLATT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tnxYbs {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRD1tnxYbs .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tRD1tnxYbs .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRD1tnxYbs .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRD1tnxYbs .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tRD1tnxYbs .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tRD1tnxYbs .card-title,
.cid-tRD1tnxYbs .card-box {
  color: #000000;
}
.cid-tRD1tnxYbs .main-title,
.cid-tRD1tnxYbs .title-col {
  text-align: center;
  color: #000000;
}
.cid-tRD1tnxYbs .card-text {
  color: #353535;
}
.cid-tRD1tnxYbs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tnxYbs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tpRoSh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRD1tpRoSh .mbr-section-title {
  color: #ed155a;
}
.cid-tRD1tpRoSh .mbr-section-subtitle {
  color: #000000;
}
.cid-tRD1tpRoSh .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tRD1tpRoSh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tpRoSh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tqJVpf {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tRD1tqJVpf .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tRD1tqJVpf .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tRD1tqJVpf .image-block:hover:before {
  opacity: 0.6;
}
.cid-tRD1tqJVpf .image-block:hover .wrap {
  opacity: 1;
}
.cid-tRD1tqJVpf .image-block:hover img {
  transform: scale(1.1);
}
.cid-tRD1tqJVpf .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tRD1tqJVpf img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRD1tqJVpf .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tRD1tqJVpf .wrap {
    opacity: 1 !important;
  }
  .cid-tRD1tqJVpf .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tRD1tsdtsg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRD1tsdtsg .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRD1tsdtsg .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRD1tsdtsg img {
  width: 140px;
  margin: auto;
}
.cid-tRD1tsdtsg .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tRD1tsdtsg .card-wrapper:hover {
  background: transparent;
}
.cid-tRD1tsdtsg .card-title,
.cid-tRD1tsdtsg .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tRD1tsdtsg .main-title,
.cid-tRD1tsdtsg .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tRD1tsdtsg .card-text {
  color: #bbbbbb;
}
.cid-tRD1tsdtsg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRD1tsdtsg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRq3msMoB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-uBRq3msMoB .row {
  justify-content: space-between;
}
.cid-uBRq3msMoB .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRq3msMoB .form-control:focus,
.cid-uBRq3msMoB .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRq3msMoB .form-group {
  margin-bottom: 1rem;
}
.cid-uBRq3msMoB input::-webkit-input-placeholder,
.cid-uBRq3msMoB textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRq3msMoB input:-moz-placeholder,
.cid-uBRq3msMoB textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRq3msMoB .jq-selectbox li,
.cid-uBRq3msMoB .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRq3msMoB .jq-selectbox li:hover,
.cid-uBRq3msMoB .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRq3msMoB .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRq3msMoB .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRq3msMoB .mbr-text {
  color: #767676;
}
.cid-uBRq3msMoB .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRq3msMoB .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRq3msMoB .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRq3msMoB .form-block {
    padding: 1rem;
  }
}
.cid-uBRq3msMoB H4 {
  color: #232323;
}
.cid-uBRq3msMoB .mbr-section-title,
.cid-uBRq3msMoB .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRq3msMoB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRq3msMoB .form-text {
  color: #353535;
}
.cid-uBRq3msMoB .text {
  color: #ffffff;
}
.cid-uBRq3msMoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRq3msMoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRD1tvtilX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tRD1tvtilX .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tRD1tvtilX .btn-social,
.cid-tRD1tvtilX .mbr-section-title {
  color: #57468b;
}
.cid-tRD1tvtilX .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tRD1tvtilX .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRD1tvtilX .soc-item:hover {
  background: #ffffff;
}
.cid-tRD1tvtilX .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tRD1tvtilX .align-left,
  .cid-tRD1tvtilX .align-right {
    text-align: center;
  }
  .cid-tRD1tvtilX .social-list {
    justify-content: center;
  }
  .cid-tRD1tvtilX .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tRD1tvtilX .mbr-text {
  color: #ffffff;
}
.cid-tRUn0OA1uZ .navbar-dropdown {
  position: relative !important;
}
.cid-tRUn0OA1uZ .navbar-dropdown {
  position: absolute !important;
}
.cid-tRUn0OA1uZ .btn {
  padding: 0.3rem 2rem;
}
.cid-tRUn0OA1uZ .nav-link {
  position: relative;
}
.cid-tRUn0OA1uZ .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-tRUn0OA1uZ .nav-link:hover:before {
  width: 100%;
}
.cid-tRUn0OA1uZ .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-tRUn0OA1uZ .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRUn0OA1uZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRUn0OA1uZ .dropdown-item:hover,
.cid-tRUn0OA1uZ .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-tRUn0OA1uZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRUn0OA1uZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRUn0OA1uZ .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tRUn0OA1uZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRUn0OA1uZ .container {
  display: flex;
  margin: auto;
}
.cid-tRUn0OA1uZ .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRUn0OA1uZ .dropdown-menu,
.cid-tRUn0OA1uZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tRUn0OA1uZ .nav-item:focus,
.cid-tRUn0OA1uZ .nav-link:focus {
  outline: none;
}
.cid-tRUn0OA1uZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRUn0OA1uZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRUn0OA1uZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRUn0OA1uZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRUn0OA1uZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRUn0OA1uZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRUn0OA1uZ .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRUn0OA1uZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tRUn0OA1uZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tRUn0OA1uZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRUn0OA1uZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tRUn0OA1uZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRUn0OA1uZ .navbar.collapsed {
  justify-content: center;
}
.cid-tRUn0OA1uZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRUn0OA1uZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRUn0OA1uZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tRUn0OA1uZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRUn0OA1uZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRUn0OA1uZ .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-tRUn0OA1uZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRUn0OA1uZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRUn0OA1uZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRUn0OA1uZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRUn0OA1uZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRUn0OA1uZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRUn0OA1uZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRUn0OA1uZ .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-tRUn0OA1uZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRUn0OA1uZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRUn0OA1uZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRUn0OA1uZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRUn0OA1uZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRUn0OA1uZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRUn0OA1uZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRUn0OA1uZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRUn0OA1uZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRUn0OA1uZ .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-tRUn0OA1uZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRUn0OA1uZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRUn0OA1uZ .dropdown-item.active,
.cid-tRUn0OA1uZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tRUn0OA1uZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRUn0OA1uZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRUn0OA1uZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRUn0OA1uZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRUn0OA1uZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRUn0OA1uZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRUn0OA1uZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRUn0OA1uZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRUn0OA1uZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRUn0OA1uZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-tRUn0OA1uZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRUn0OA1uZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRUn0OA1uZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRUn0OA1uZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRUn0OA1uZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRUn0OA1uZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRUn0OA1uZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRUn0OA1uZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRUn0OA1uZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRUn0OA1uZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRUn0OA1uZ .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-tRUn0OA1uZ .navbar {
    height: 70px;
  }
  .cid-tRUn0OA1uZ .navbar.opened {
    height: auto;
  }
  .cid-tRUn0OA1uZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRUn0QunRY {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tRUn0QunRY .mbr-section-title {
  color: #ed155a;
}
.cid-tRUn0QunRY .mbr-text,
.cid-tRUn0QunRY .mbr-section-btn {
  color: #160830;
}
.cid-tRUn0QunRY .mbr-section-subtitle {
  color: #160830;
}
.cid-tRUn0QunRY img {
  border-radius: 2rem;
}
.cid-tRUn0QunRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0QunRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0R66uj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRUn0R66uj blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tRUn0R66uj .quote {
  color: #e43f3f;
}
.cid-tRUn0R66uj .quote,
.cid-tRUn0R66uj blockquote {
  color: #353535;
}
.cid-tRUn0R66uj .mbr-section-title {
  text-align: center;
}
.cid-tRUn0Rwwy5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRUn0Rwwy5 .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRUn0Rwwy5 .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRUn0Rwwy5 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRUn0Rwwy5 .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRUn0Rwwy5 .card-title,
.cid-tRUn0Rwwy5 .card-text {
  transition: all 0.3s;
}
.cid-tRUn0Rwwy5 .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRUn0Rwwy5 .card-wrapper:hover {
  background: #28196c;
}
.cid-tRUn0Rwwy5 .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRUn0Rwwy5 .card-wrapper:hover .card-title,
.cid-tRUn0Rwwy5 .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRUn0Rwwy5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRUn0Rwwy5 .card-title,
.cid-tRUn0Rwwy5 .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRUn0Rwwy5 .card-text {
  color: #ffffff;
}
.cid-tRUn0Rwwy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0Rwwy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0Rwwy5 .mbr-section-title {
  color: #ed155a;
}
.cid-tRUn0SilO6 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tRUn0SilO6 .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tRUn0SilO6 .card-box {
  z-index: 2;
  position: relative;
}
.cid-tRUn0SilO6 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tRUn0SilO6 .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tRUn0SilO6 .card-title,
.cid-tRUn0SilO6 .card-text {
  transition: all 0.3s;
}
.cid-tRUn0SilO6 .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tRUn0SilO6 .card-wrapper:hover {
  background: #28196c;
}
.cid-tRUn0SilO6 .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tRUn0SilO6 .card-wrapper:hover .card-title,
.cid-tRUn0SilO6 .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRUn0SilO6 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tRUn0SilO6 .card-title,
.cid-tRUn0SilO6 .iconfont-wrapper {
  color: #ffffff;
}
.cid-tRUn0SilO6 .card-text {
  color: #ffffff;
}
.cid-tRUn0SilO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0SilO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0SXDDq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tRUn0SXDDq .row {
  flex-direction: row-reverse;
}
.cid-tRUn0SXDDq .mbr-section-title {
  color: #ed155a;
}
.cid-tRUn0SXDDq .mbr-text,
.cid-tRUn0SXDDq .mbr-section-btn {
  color: #ffffff;
}
.cid-tRUn0SXDDq .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tRUn0SXDDq img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tRUn0SXDDq .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tRUn0SXDDq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0SXDDq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0TueFf {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRUn0TueFf .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tRUn0TueFf .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRUn0TueFf .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRUn0TueFf .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tRUn0TueFf .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tRUn0TueFf .card-title,
.cid-tRUn0TueFf .card-box {
  color: #000000;
}
.cid-tRUn0TueFf .main-title,
.cid-tRUn0TueFf .title-col {
  text-align: center;
  color: #000000;
}
.cid-tRUn0TueFf .card-text {
  color: #353535;
}
.cid-tRUn0TueFf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0TueFf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0V26bw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRUn0V26bw .mbr-section-title {
  color: #000000;
}
.cid-tRUn0V26bw .mbr-section-subtitle {
  color: #000000;
}
.cid-tRUn0V26bw .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tRUn0V26bw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0V26bw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0VVqlf {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tRUn0VVqlf .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tRUn0VVqlf .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tRUn0VVqlf .image-block:hover:before {
  opacity: 0.6;
}
.cid-tRUn0VVqlf .image-block:hover .wrap {
  opacity: 1;
}
.cid-tRUn0VVqlf .image-block:hover img {
  transform: scale(1.1);
}
.cid-tRUn0VVqlf .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tRUn0VVqlf img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRUn0VVqlf .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tRUn0VVqlf .wrap {
    opacity: 1 !important;
  }
  .cid-tRUn0VVqlf .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tRUn0WHBs9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRUn0WHBs9 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tRUn0WHBs9 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tRUn0WHBs9 img {
  width: 140px;
  margin: auto;
}
.cid-tRUn0WHBs9 .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tRUn0WHBs9 .card-wrapper:hover {
  background: transparent;
}
.cid-tRUn0WHBs9 .card-title,
.cid-tRUn0WHBs9 .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tRUn0WHBs9 .main-title,
.cid-tRUn0WHBs9 .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tRUn0WHBs9 .card-text {
  color: #bbbbbb;
}
.cid-tRUn0WHBs9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUn0WHBs9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRooIJkpm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1080.png");
}
.cid-uBRooIJkpm .row {
  justify-content: space-between;
}
.cid-uBRooIJkpm .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRooIJkpm .form-control:focus,
.cid-uBRooIJkpm .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRooIJkpm .form-group {
  margin-bottom: 1rem;
}
.cid-uBRooIJkpm input::-webkit-input-placeholder,
.cid-uBRooIJkpm textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRooIJkpm input:-moz-placeholder,
.cid-uBRooIJkpm textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRooIJkpm .jq-selectbox li,
.cid-uBRooIJkpm .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRooIJkpm .jq-selectbox li:hover,
.cid-uBRooIJkpm .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRooIJkpm .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRooIJkpm .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRooIJkpm .mbr-text {
  color: #767676;
}
.cid-uBRooIJkpm .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRooIJkpm .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRooIJkpm .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRooIJkpm .form-block {
    padding: 1rem;
  }
}
.cid-uBRooIJkpm H4 {
  color: #232323;
}
.cid-uBRooIJkpm .mbr-section-title,
.cid-uBRooIJkpm .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRooIJkpm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRooIJkpm .form-text {
  color: #353535;
}
.cid-uBRooIJkpm .text {
  color: #ffffff;
}
.cid-uBRooIJkpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRooIJkpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUn0YwHW5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tRUn0YwHW5 .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tRUn0YwHW5 .btn-social,
.cid-tRUn0YwHW5 .mbr-section-title {
  color: #57468b;
}
.cid-tRUn0YwHW5 .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tRUn0YwHW5 .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tRUn0YwHW5 .soc-item:hover {
  background: #ffffff;
}
.cid-tRUn0YwHW5 .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tRUn0YwHW5 .align-left,
  .cid-tRUn0YwHW5 .align-right {
    text-align: center;
  }
  .cid-tRUn0YwHW5 .social-list {
    justify-content: center;
  }
  .cid-tRUn0YwHW5 .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tRUn0YwHW5 .mbr-text {
  color: #ffffff;
}
.cid-tSpdI4uAf7 .navbar-dropdown {
  position: relative !important;
}
.cid-tSpdI4uAf7 .navbar-dropdown {
  position: absolute !important;
}
.cid-tSpdI4uAf7 .btn {
  padding: 0.3rem 2rem;
}
.cid-tSpdI4uAf7 .nav-link {
  position: relative;
}
.cid-tSpdI4uAf7 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-tSpdI4uAf7 .nav-link:hover:before {
  width: 100%;
}
.cid-tSpdI4uAf7 .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-tSpdI4uAf7 .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSpdI4uAf7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSpdI4uAf7 .dropdown-item:hover,
.cid-tSpdI4uAf7 .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-tSpdI4uAf7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSpdI4uAf7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSpdI4uAf7 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tSpdI4uAf7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSpdI4uAf7 .container {
  display: flex;
  margin: auto;
}
.cid-tSpdI4uAf7 .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSpdI4uAf7 .dropdown-menu,
.cid-tSpdI4uAf7 .navbar.opened {
  background: #ffffff !important;
}
.cid-tSpdI4uAf7 .nav-item:focus,
.cid-tSpdI4uAf7 .nav-link:focus {
  outline: none;
}
.cid-tSpdI4uAf7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSpdI4uAf7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSpdI4uAf7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSpdI4uAf7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSpdI4uAf7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSpdI4uAf7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSpdI4uAf7 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-tSpdI4uAf7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tSpdI4uAf7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tSpdI4uAf7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSpdI4uAf7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tSpdI4uAf7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSpdI4uAf7 .navbar.collapsed {
  justify-content: center;
}
.cid-tSpdI4uAf7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSpdI4uAf7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSpdI4uAf7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tSpdI4uAf7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSpdI4uAf7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSpdI4uAf7 .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-tSpdI4uAf7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSpdI4uAf7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSpdI4uAf7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSpdI4uAf7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSpdI4uAf7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSpdI4uAf7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSpdI4uAf7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSpdI4uAf7 .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-tSpdI4uAf7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSpdI4uAf7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSpdI4uAf7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSpdI4uAf7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSpdI4uAf7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSpdI4uAf7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tSpdI4uAf7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSpdI4uAf7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSpdI4uAf7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSpdI4uAf7 .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-tSpdI4uAf7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSpdI4uAf7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSpdI4uAf7 .dropdown-item.active,
.cid-tSpdI4uAf7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tSpdI4uAf7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSpdI4uAf7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSpdI4uAf7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSpdI4uAf7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSpdI4uAf7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSpdI4uAf7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSpdI4uAf7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSpdI4uAf7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSpdI4uAf7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSpdI4uAf7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-tSpdI4uAf7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSpdI4uAf7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSpdI4uAf7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSpdI4uAf7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSpdI4uAf7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSpdI4uAf7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSpdI4uAf7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSpdI4uAf7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSpdI4uAf7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tSpdI4uAf7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSpdI4uAf7 .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-tSpdI4uAf7 .navbar {
    height: 70px;
  }
  .cid-tSpdI4uAf7 .navbar.opened {
    height: auto;
  }
  .cid-tSpdI4uAf7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSpdI5eDus {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tSpdI5eDus .mbr-section-title {
  color: #ed155a;
}
.cid-tSpdI5eDus .mbr-text,
.cid-tSpdI5eDus .mbr-section-btn {
  color: #160830;
}
.cid-tSpdI5eDus .mbr-section-subtitle {
  color: #160830;
}
.cid-tSpdI5eDus img {
  border-radius: 2rem;
}
.cid-tSpdI5eDus .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI5eDus .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdI5PV7g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tSpdI5PV7g blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tSpdI5PV7g .quote {
  color: #e43f3f;
}
.cid-tSpdI5PV7g .quote,
.cid-tSpdI5PV7g blockquote {
  color: #353535;
}
.cid-tSpdI5PV7g .mbr-section-title {
  text-align: center;
}
.cid-tSpdI6ijXJ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSpdI6ijXJ .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSpdI6ijXJ .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSpdI6ijXJ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tSpdI6ijXJ .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tSpdI6ijXJ .card-title,
.cid-tSpdI6ijXJ .card-text {
  transition: all 0.3s;
}
.cid-tSpdI6ijXJ .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSpdI6ijXJ .card-wrapper:hover {
  background: #28196c;
}
.cid-tSpdI6ijXJ .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tSpdI6ijXJ .card-wrapper:hover .card-title,
.cid-tSpdI6ijXJ .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSpdI6ijXJ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSpdI6ijXJ .card-title,
.cid-tSpdI6ijXJ .iconfont-wrapper {
  color: #ffffff;
}
.cid-tSpdI6ijXJ .card-text {
  color: #ffffff;
}
.cid-tSpdI6ijXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI6ijXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdI6ijXJ .mbr-section-title {
  color: #ed155a;
}
.cid-tSpdI7ifGr {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tSpdI7ifGr .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSpdI7ifGr .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSpdI7ifGr .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tSpdI7ifGr .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tSpdI7ifGr .card-title,
.cid-tSpdI7ifGr .card-text {
  transition: all 0.3s;
}
.cid-tSpdI7ifGr .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSpdI7ifGr .card-wrapper:hover {
  background: #28196c;
}
.cid-tSpdI7ifGr .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tSpdI7ifGr .card-wrapper:hover .card-title,
.cid-tSpdI7ifGr .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSpdI7ifGr .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSpdI7ifGr .card-title,
.cid-tSpdI7ifGr .iconfont-wrapper {
  color: #ffffff;
}
.cid-tSpdI7ifGr .card-text {
  color: #ffffff;
}
.cid-tSpdI7ifGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI7ifGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdI7QDYK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tSpdI7QDYK .row {
  flex-direction: row-reverse;
}
.cid-tSpdI7QDYK .mbr-section-title {
  color: #ed155a;
}
.cid-tSpdI7QDYK .mbr-text,
.cid-tSpdI7QDYK .mbr-section-btn {
  color: #f4f4f4;
}
.cid-tSpdI7QDYK .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tSpdI7QDYK img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tSpdI7QDYK .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tSpdI7QDYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI7QDYK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdI8rrhG {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tSpdI8rrhG .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tSpdI8rrhG .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tSpdI8rrhG .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tSpdI8rrhG .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tSpdI8rrhG .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tSpdI8rrhG .card-title,
.cid-tSpdI8rrhG .card-box {
  color: #000000;
}
.cid-tSpdI8rrhG .main-title,
.cid-tSpdI8rrhG .title-col {
  text-align: center;
  color: #000000;
}
.cid-tSpdI8rrhG .card-text {
  color: #353535;
}
.cid-tSpdI8rrhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI8rrhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdI9B1zj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSpdI9B1zj .mbr-section-title {
  color: #000000;
}
.cid-tSpdI9B1zj .mbr-section-subtitle {
  color: #000000;
}
.cid-tSpdI9B1zj .line {
  background: #f2effc;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tSpdI9B1zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdI9B1zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdIa5404 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tSpdIa5404 .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tSpdIa5404 .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tSpdIa5404 .image-block:hover:before {
  opacity: 0.6;
}
.cid-tSpdIa5404 .image-block:hover .wrap {
  opacity: 1;
}
.cid-tSpdIa5404 .image-block:hover img {
  transform: scale(1.1);
}
.cid-tSpdIa5404 .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tSpdIa5404 img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tSpdIa5404 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tSpdIa5404 .wrap {
    opacity: 1 !important;
  }
  .cid-tSpdIa5404 .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tSpdIaADtr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tSpdIaADtr .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tSpdIaADtr .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tSpdIaADtr img {
  width: 140px;
  margin: auto;
}
.cid-tSpdIaADtr .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tSpdIaADtr .card-wrapper:hover {
  background: transparent;
}
.cid-tSpdIaADtr .card-title,
.cid-tSpdIaADtr .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tSpdIaADtr .main-title,
.cid-tSpdIaADtr .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tSpdIaADtr .card-text {
  color: #bbbbbb;
}
.cid-tSpdIaADtr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpdIaADtr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRpi9uiiy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uBRpi9uiiy .row {
  justify-content: space-between;
}
.cid-uBRpi9uiiy .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRpi9uiiy .form-control:focus,
.cid-uBRpi9uiiy .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRpi9uiiy .form-group {
  margin-bottom: 1rem;
}
.cid-uBRpi9uiiy input::-webkit-input-placeholder,
.cid-uBRpi9uiiy textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRpi9uiiy input:-moz-placeholder,
.cid-uBRpi9uiiy textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRpi9uiiy .jq-selectbox li,
.cid-uBRpi9uiiy .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRpi9uiiy .jq-selectbox li:hover,
.cid-uBRpi9uiiy .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRpi9uiiy .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRpi9uiiy .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRpi9uiiy .mbr-text {
  color: #767676;
}
.cid-uBRpi9uiiy .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRpi9uiiy .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRpi9uiiy .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRpi9uiiy .form-block {
    padding: 1rem;
  }
}
.cid-uBRpi9uiiy H4 {
  color: #232323;
}
.cid-uBRpi9uiiy .mbr-section-title,
.cid-uBRpi9uiiy .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRpi9uiiy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRpi9uiiy .form-text {
  color: #353535;
}
.cid-uBRpi9uiiy .text {
  color: #ffffff;
}
.cid-uBRpi9uiiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRpi9uiiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpdIclrtD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tSpdIclrtD .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tSpdIclrtD .btn-social,
.cid-tSpdIclrtD .mbr-section-title {
  color: #57468b;
}
.cid-tSpdIclrtD .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tSpdIclrtD .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tSpdIclrtD .soc-item:hover {
  background: #ffffff;
}
.cid-tSpdIclrtD .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tSpdIclrtD .align-left,
  .cid-tSpdIclrtD .align-right {
    text-align: center;
  }
  .cid-tSpdIclrtD .social-list {
    justify-content: center;
  }
  .cid-tSpdIclrtD .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tSpdIclrtD .mbr-text {
  color: #ffffff;
}
.cid-tSpuZhSwnx .navbar-dropdown {
  position: relative !important;
}
.cid-tSpuZhSwnx .navbar-dropdown {
  position: absolute !important;
}
.cid-tSpuZhSwnx .btn {
  padding: 0.3rem 2rem;
}
.cid-tSpuZhSwnx .nav-link {
  position: relative;
}
.cid-tSpuZhSwnx .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-tSpuZhSwnx .nav-link:hover:before {
  width: 100%;
}
.cid-tSpuZhSwnx .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-tSpuZhSwnx .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSpuZhSwnx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSpuZhSwnx .dropdown-item:hover,
.cid-tSpuZhSwnx .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-tSpuZhSwnx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSpuZhSwnx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSpuZhSwnx .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tSpuZhSwnx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSpuZhSwnx .container {
  display: flex;
  margin: auto;
}
.cid-tSpuZhSwnx .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSpuZhSwnx .dropdown-menu,
.cid-tSpuZhSwnx .navbar.opened {
  background: #ffffff !important;
}
.cid-tSpuZhSwnx .nav-item:focus,
.cid-tSpuZhSwnx .nav-link:focus {
  outline: none;
}
.cid-tSpuZhSwnx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSpuZhSwnx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSpuZhSwnx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSpuZhSwnx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSpuZhSwnx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSpuZhSwnx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSpuZhSwnx .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-tSpuZhSwnx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tSpuZhSwnx .navbar.opened {
  transition: all 0.3s;
}
.cid-tSpuZhSwnx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSpuZhSwnx .navbar .navbar-logo img {
  width: auto;
}
.cid-tSpuZhSwnx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSpuZhSwnx .navbar.collapsed {
  justify-content: center;
}
.cid-tSpuZhSwnx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSpuZhSwnx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSpuZhSwnx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tSpuZhSwnx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSpuZhSwnx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSpuZhSwnx .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-tSpuZhSwnx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSpuZhSwnx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSpuZhSwnx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSpuZhSwnx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSpuZhSwnx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSpuZhSwnx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSpuZhSwnx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSpuZhSwnx .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-tSpuZhSwnx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSpuZhSwnx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSpuZhSwnx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSpuZhSwnx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSpuZhSwnx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSpuZhSwnx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tSpuZhSwnx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSpuZhSwnx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSpuZhSwnx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSpuZhSwnx .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-tSpuZhSwnx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSpuZhSwnx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSpuZhSwnx .dropdown-item.active,
.cid-tSpuZhSwnx .dropdown-item:active {
  background-color: transparent;
}
.cid-tSpuZhSwnx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSpuZhSwnx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSpuZhSwnx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSpuZhSwnx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSpuZhSwnx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSpuZhSwnx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSpuZhSwnx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSpuZhSwnx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSpuZhSwnx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSpuZhSwnx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-tSpuZhSwnx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSpuZhSwnx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSpuZhSwnx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSpuZhSwnx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSpuZhSwnx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSpuZhSwnx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSpuZhSwnx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSpuZhSwnx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSpuZhSwnx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tSpuZhSwnx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSpuZhSwnx .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-tSpuZhSwnx .navbar {
    height: 70px;
  }
  .cid-tSpuZhSwnx .navbar.opened {
    height: auto;
  }
  .cid-tSpuZhSwnx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSpuZiVRkS {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tSpuZiVRkS .mbr-section-title {
  color: #ed155a;
}
.cid-tSpuZiVRkS .mbr-text,
.cid-tSpuZiVRkS .mbr-section-btn {
  color: #160830;
}
.cid-tSpuZiVRkS .mbr-section-subtitle {
  color: #160830;
}
.cid-tSpuZiVRkS img {
  border-radius: 2rem;
}
.cid-tSpuZiVRkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZiVRkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZjr3Rj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tSpuZjr3Rj blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-tSpuZjr3Rj .quote {
  color: #e43f3f;
}
.cid-tSpuZjr3Rj .quote,
.cid-tSpuZjr3Rj blockquote {
  color: #353535;
}
.cid-tSpuZjr3Rj .mbr-section-title {
  text-align: center;
}
.cid-tSpuZjr3Rj .mbr-text {
  text-align: left;
}
.cid-tSpuZjQ3aB {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSpuZjQ3aB .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSpuZjQ3aB .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSpuZjQ3aB .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tSpuZjQ3aB .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tSpuZjQ3aB .card-title,
.cid-tSpuZjQ3aB .card-text {
  transition: all 0.3s;
}
.cid-tSpuZjQ3aB .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSpuZjQ3aB .card-wrapper:hover {
  background: #28196c;
}
.cid-tSpuZjQ3aB .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tSpuZjQ3aB .card-wrapper:hover .card-title,
.cid-tSpuZjQ3aB .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSpuZjQ3aB .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSpuZjQ3aB .card-title,
.cid-tSpuZjQ3aB .iconfont-wrapper {
  color: #ffffff;
}
.cid-tSpuZjQ3aB .card-text {
  color: #ffffff;
}
.cid-tSpuZjQ3aB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZjQ3aB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZjQ3aB .mbr-section-title {
  color: #ed155a;
}
.cid-tSpuZkzztR {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tSpuZkzztR .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tSpuZkzztR .card-box {
  z-index: 2;
  position: relative;
}
.cid-tSpuZkzztR .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-tSpuZkzztR .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tSpuZkzztR .card-title,
.cid-tSpuZkzztR .card-text {
  transition: all 0.3s;
}
.cid-tSpuZkzztR .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-tSpuZkzztR .card-wrapper:hover {
  background: #28196c;
}
.cid-tSpuZkzztR .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-tSpuZkzztR .card-wrapper:hover .card-title,
.cid-tSpuZkzztR .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSpuZkzztR .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tSpuZkzztR .card-title,
.cid-tSpuZkzztR .iconfont-wrapper {
  color: #ffffff;
}
.cid-tSpuZkzztR .card-text {
  color: #ffffff;
}
.cid-tSpuZkzztR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZkzztR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZlbZ5e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-tSpuZlbZ5e .row {
  flex-direction: row-reverse;
}
.cid-tSpuZlbZ5e .mbr-section-title {
  color: #ed155a;
}
.cid-tSpuZlbZ5e .mbr-text,
.cid-tSpuZlbZ5e .mbr-section-btn {
  color: #f4f4f4;
}
.cid-tSpuZlbZ5e .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tSpuZlbZ5e img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tSpuZlbZ5e .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tSpuZlbZ5e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZlbZ5e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZlLHmr {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tSpuZlLHmr .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tSpuZlLHmr .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tSpuZlLHmr .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tSpuZlLHmr .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-tSpuZlLHmr .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-tSpuZlLHmr .card-title,
.cid-tSpuZlLHmr .card-box {
  color: #000000;
}
.cid-tSpuZlLHmr .main-title,
.cid-tSpuZlLHmr .title-col {
  text-align: center;
  color: #000000;
}
.cid-tSpuZlLHmr .card-text {
  color: #353535;
}
.cid-tSpuZlLHmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZlLHmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZnbsoo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSpuZnbsoo .mbr-section-title {
  color: #ed155a;
}
.cid-tSpuZnbsoo .mbr-section-subtitle {
  color: #000000;
}
.cid-tSpuZnbsoo .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-tSpuZnbsoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZnbsoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZnH1ZY {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-tSpuZnH1ZY .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tSpuZnH1ZY .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tSpuZnH1ZY .image-block:hover:before {
  opacity: 0.6;
}
.cid-tSpuZnH1ZY .image-block:hover .wrap {
  opacity: 1;
}
.cid-tSpuZnH1ZY .image-block:hover img {
  transform: scale(1.1);
}
.cid-tSpuZnH1ZY .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tSpuZnH1ZY img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tSpuZnH1ZY .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tSpuZnH1ZY .wrap {
    opacity: 1 !important;
  }
  .cid-tSpuZnH1ZY .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tSpuZod03P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tSpuZod03P .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tSpuZod03P .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tSpuZod03P img {
  width: 140px;
  margin: auto;
}
.cid-tSpuZod03P .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tSpuZod03P .card-wrapper:hover {
  background: transparent;
}
.cid-tSpuZod03P .card-title,
.cid-tSpuZod03P .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tSpuZod03P .main-title,
.cid-tSpuZod03P .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-tSpuZod03P .card-text {
  color: #bbbbbb;
}
.cid-tSpuZod03P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpuZod03P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRqJwjgXA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-uBRqJwjgXA .row {
  justify-content: space-between;
}
.cid-uBRqJwjgXA .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRqJwjgXA .form-control:focus,
.cid-uBRqJwjgXA .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRqJwjgXA .form-group {
  margin-bottom: 1rem;
}
.cid-uBRqJwjgXA input::-webkit-input-placeholder,
.cid-uBRqJwjgXA textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRqJwjgXA input:-moz-placeholder,
.cid-uBRqJwjgXA textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRqJwjgXA .jq-selectbox li,
.cid-uBRqJwjgXA .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRqJwjgXA .jq-selectbox li:hover,
.cid-uBRqJwjgXA .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRqJwjgXA .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRqJwjgXA .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRqJwjgXA .mbr-text {
  color: #767676;
}
.cid-uBRqJwjgXA .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRqJwjgXA .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRqJwjgXA .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRqJwjgXA .form-block {
    padding: 1rem;
  }
}
.cid-uBRqJwjgXA H4 {
  color: #232323;
}
.cid-uBRqJwjgXA .mbr-section-title,
.cid-uBRqJwjgXA .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRqJwjgXA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRqJwjgXA .form-text {
  color: #353535;
}
.cid-uBRqJwjgXA .text {
  color: #ffffff;
}
.cid-uBRqJwjgXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRqJwjgXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpuZpEjuj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tSpuZpEjuj .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tSpuZpEjuj .btn-social,
.cid-tSpuZpEjuj .mbr-section-title {
  color: #57468b;
}
.cid-tSpuZpEjuj .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-tSpuZpEjuj .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tSpuZpEjuj .soc-item:hover {
  background: #ffffff;
}
.cid-tSpuZpEjuj .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-tSpuZpEjuj .align-left,
  .cid-tSpuZpEjuj .align-right {
    text-align: center;
  }
  .cid-tSpuZpEjuj .social-list {
    justify-content: center;
  }
  .cid-tSpuZpEjuj .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tSpuZpEjuj .mbr-text {
  color: #ffffff;
}
.cid-u64EiromYm .navbar-dropdown {
  position: relative !important;
}
.cid-u64EiromYm .navbar-dropdown {
  position: absolute !important;
}
.cid-u64EiromYm .btn {
  padding: 0.3rem 2rem;
}
.cid-u64EiromYm .nav-link {
  position: relative;
}
.cid-u64EiromYm .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-u64EiromYm .nav-link:hover:before {
  width: 100%;
}
.cid-u64EiromYm .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-u64EiromYm .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u64EiromYm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u64EiromYm .dropdown-item:hover,
.cid-u64EiromYm .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-u64EiromYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u64EiromYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u64EiromYm .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-u64EiromYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u64EiromYm .container {
  display: flex;
  margin: auto;
}
.cid-u64EiromYm .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u64EiromYm .dropdown-menu,
.cid-u64EiromYm .navbar.opened {
  background: #ffffff !important;
}
.cid-u64EiromYm .nav-item:focus,
.cid-u64EiromYm .nav-link:focus {
  outline: none;
}
.cid-u64EiromYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u64EiromYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u64EiromYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u64EiromYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u64EiromYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u64EiromYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u64EiromYm .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-u64EiromYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-u64EiromYm .navbar.opened {
  transition: all 0.3s;
}
.cid-u64EiromYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u64EiromYm .navbar .navbar-logo img {
  width: auto;
}
.cid-u64EiromYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u64EiromYm .navbar.collapsed {
  justify-content: center;
}
.cid-u64EiromYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u64EiromYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u64EiromYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-u64EiromYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u64EiromYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u64EiromYm .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-u64EiromYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u64EiromYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u64EiromYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u64EiromYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u64EiromYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u64EiromYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u64EiromYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u64EiromYm .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-u64EiromYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u64EiromYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u64EiromYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u64EiromYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u64EiromYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u64EiromYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u64EiromYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-u64EiromYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u64EiromYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u64EiromYm .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-u64EiromYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u64EiromYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u64EiromYm .dropdown-item.active,
.cid-u64EiromYm .dropdown-item:active {
  background-color: transparent;
}
.cid-u64EiromYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u64EiromYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u64EiromYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u64EiromYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u64EiromYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u64EiromYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u64EiromYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u64EiromYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u64EiromYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u64EiromYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-u64EiromYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u64EiromYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u64EiromYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u64EiromYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u64EiromYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u64EiromYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u64EiromYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u64EiromYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u64EiromYm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u64EiromYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u64EiromYm .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-u64EiromYm .navbar {
    height: 70px;
  }
  .cid-u64EiromYm .navbar.opened {
    height: auto;
  }
  .cid-u64EiromYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u64EirZ4To {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-u64EirZ4To .mbr-section-title {
  color: #ed155a;
}
.cid-u64EirZ4To .mbr-text,
.cid-u64EirZ4To .mbr-section-btn {
  color: #160830;
}
.cid-u64EirZ4To .mbr-section-subtitle {
  color: #160830;
}
.cid-u64EirZ4To img {
  border-radius: 2rem;
}
.cid-u64EirZ4To .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EirZ4To .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64EisuHdS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u64EisuHdS blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-u64EisuHdS .quote {
  color: #e43f3f;
}
.cid-u64EisuHdS .quote,
.cid-u64EisuHdS blockquote {
  color: #353535;
}
.cid-u64EisuHdS .mbr-section-title {
  text-align: center;
  color: #160830;
}
.cid-u64EisRLHe {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u64EisRLHe .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-u64EisRLHe .card-box {
  z-index: 2;
  position: relative;
}
.cid-u64EisRLHe .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-u64EisRLHe .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-u64EisRLHe .card-title,
.cid-u64EisRLHe .card-text {
  transition: all 0.3s;
}
.cid-u64EisRLHe .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-u64EisRLHe .card-wrapper:hover {
  background: #28196c;
}
.cid-u64EisRLHe .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-u64EisRLHe .card-wrapper:hover .card-title,
.cid-u64EisRLHe .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u64EisRLHe .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u64EisRLHe .card-title,
.cid-u64EisRLHe .iconfont-wrapper {
  color: #ffffff;
}
.cid-u64EisRLHe .card-text {
  color: #ffffff;
}
.cid-u64EisRLHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EisRLHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64EisRLHe .mbr-section-title {
  color: #ed155a;
}
.cid-u64EitvTwh {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u64EitvTwh .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-u64EitvTwh .card-box {
  z-index: 2;
  position: relative;
}
.cid-u64EitvTwh .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #ed155a;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-u64EitvTwh .mbr-iconfont-big {
  font-size: 16rem;
  color: #ed155a;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-u64EitvTwh .card-title,
.cid-u64EitvTwh .card-text {
  transition: all 0.3s;
}
.cid-u64EitvTwh .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #160830;
  transition: all 0.3s;
}
.cid-u64EitvTwh .card-wrapper:hover {
  background: #28196c;
}
.cid-u64EitvTwh .card-wrapper:hover .mbr-iconfont-big {
  color: #ffffff;
  transform: rotate(-20deg);
}
.cid-u64EitvTwh .card-wrapper:hover .card-title,
.cid-u64EitvTwh .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u64EitvTwh .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u64EitvTwh .card-title,
.cid-u64EitvTwh .iconfont-wrapper {
  color: #ffffff;
}
.cid-u64EitvTwh .card-text {
  color: #ffffff;
}
.cid-u64EitvTwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EitvTwh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64EiugbCY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #160830;
}
.cid-u64EiugbCY .row {
  flex-direction: row-reverse;
}
.cid-u64EiugbCY .mbr-section-title {
  color: #ed155a;
}
.cid-u64EiugbCY .mbr-text,
.cid-u64EiugbCY .mbr-section-btn {
  color: #ffffff;
}
.cid-u64EiugbCY .mbr-section-subtitle {
  color: #8364e2;
}
.cid-u64EiugbCY img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-u64EiugbCY .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-u64EiugbCY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EiugbCY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64EiuLClE {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u64EiuLClE .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ed155a;
  margin-bottom: 1rem;
}
.cid-u64EiuLClE .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-u64EiuLClE .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-u64EiuLClE .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-u64EiuLClE .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-u64EiuLClE .card-title,
.cid-u64EiuLClE .card-box {
  color: #000000;
}
.cid-u64EiuLClE .main-title,
.cid-u64EiuLClE .title-col {
  text-align: center;
  color: #000000;
}
.cid-u64EiuLClE .card-text {
  color: #353535;
}
.cid-u64EiuLClE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EiuLClE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64Eiw0dtU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u64Eiw0dtU .mbr-section-title {
  color: #000000;
}
.cid-u64Eiw0dtU .mbr-section-subtitle {
  color: #000000;
}
.cid-u64Eiw0dtU .line {
  background: #ffffff;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-u64Eiw0dtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64Eiw0dtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue63n9AqK2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #160830;
}
.cid-ue63n9AqK2 .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ed155a 0, #ed155a 43%, #ed155a 100%);
}
.cid-ue63n9AqK2 .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ed155a 0, #ed155a 43%, #ed155a 100%);
}
.cid-ue63n9AqK2 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ue63n9AqK2 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ue63n9AqK2 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ue63n9AqK2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-ue63n9AqK2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-ue63n9AqK2 .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ue63n9AqK2 .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-ue63n9AqK2 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-ue63n9AqK2 .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ue63n9AqK2 .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-ue63n9AqK2 .embla__button--next,
.cid-ue63n9AqK2 .embla__button--prev {
  display: flex;
}
.cid-ue63n9AqK2 .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #ed155a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-ue63n9AqK2 .embla__button:hover {
  opacity: .6 !important;
}
.cid-ue63n9AqK2 .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-ue63n9AqK2 .embla__button.embla__button--next {
  right: 0;
}
.cid-ue63n9AqK2 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-ue63n9AqK2 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-ue63n9AqK2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ue63n9AqK2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ue63n9AqK2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ue63n9AqK2 .mbr-section-title {
  color: #ffffff;
}
.cid-ue63n9AqK2 .item-name {
  color: #144031;
}
.cid-ue63n9AqK2 .item-role {
  color: #ed155a;
}
.cid-ue63n9AqK2 .item-text {
  color: #160830;
}
.cid-ue63n9AqK2 .item-name,
.cid-ue63n9AqK2 .mbr-section-btn {
  color: #160830;
}
.cid-u64EiwB8ya {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-u64EiwB8ya .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-u64EiwB8ya .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-u64EiwB8ya .image-block:hover:before {
  opacity: 0.6;
}
.cid-u64EiwB8ya .image-block:hover .wrap {
  opacity: 1;
}
.cid-u64EiwB8ya .image-block:hover img {
  transform: scale(1.1);
}
.cid-u64EiwB8ya .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u64EiwB8ya img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u64EiwB8ya .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u64EiwB8ya .wrap {
    opacity: 1 !important;
  }
  .cid-u64EiwB8ya .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-u64EixjpD5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u64EixjpD5 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-u64EixjpD5 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-u64EixjpD5 img {
  width: 140px;
  margin: auto;
}
.cid-u64EixjpD5 .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #f4f4f4;
  padding: 2rem 0;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-u64EixjpD5 .card-wrapper:hover {
  background: transparent;
}
.cid-u64EixjpD5 .card-title,
.cid-u64EixjpD5 .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-u64EixjpD5 .main-title,
.cid-u64EixjpD5 .title-col {
  text-align: center;
  color: #ed155a;
}
.cid-u64EixjpD5 .card-text {
  color: #bbbbbb;
}
.cid-u64EixjpD5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64EixjpD5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRsqIwN3T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1278.jpg");
}
.cid-uBRsqIwN3T .row {
  justify-content: space-between;
}
.cid-uBRsqIwN3T .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRsqIwN3T .form-control:focus,
.cid-uBRsqIwN3T .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRsqIwN3T .form-group {
  margin-bottom: 1rem;
}
.cid-uBRsqIwN3T input::-webkit-input-placeholder,
.cid-uBRsqIwN3T textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRsqIwN3T input:-moz-placeholder,
.cid-uBRsqIwN3T textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRsqIwN3T .jq-selectbox li,
.cid-uBRsqIwN3T .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRsqIwN3T .jq-selectbox li:hover,
.cid-uBRsqIwN3T .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRsqIwN3T .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRsqIwN3T .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRsqIwN3T .mbr-text {
  color: #767676;
}
.cid-uBRsqIwN3T .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRsqIwN3T .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRsqIwN3T .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRsqIwN3T .form-block {
    padding: 1rem;
  }
}
.cid-uBRsqIwN3T H4 {
  color: #232323;
}
.cid-uBRsqIwN3T .mbr-section-title,
.cid-uBRsqIwN3T .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRsqIwN3T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRsqIwN3T .form-text {
  color: #353535;
}
.cid-uBRsqIwN3T .text {
  color: #ffffff;
}
.cid-uBRsqIwN3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRsqIwN3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64EiAgslZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u64EiAgslZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-u64EiAgslZ .btn-social,
.cid-u64EiAgslZ .mbr-section-title {
  color: #57468b;
}
.cid-u64EiAgslZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-u64EiAgslZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-u64EiAgslZ .soc-item:hover {
  background: #ffffff;
}
.cid-u64EiAgslZ .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-u64EiAgslZ .align-left,
  .cid-u64EiAgslZ .align-right {
    text-align: center;
  }
  .cid-u64EiAgslZ .social-list {
    justify-content: center;
  }
  .cid-u64EiAgslZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-u64EiAgslZ .mbr-text {
  color: #ffffff;
}
.cid-uhqw9vMgXP .navbar-dropdown {
  position: relative !important;
}
.cid-uhqw9vMgXP .navbar-dropdown {
  position: absolute !important;
}
.cid-uhqw9vMgXP .btn {
  padding: 0.3rem 2rem;
}
.cid-uhqw9vMgXP .nav-link {
  position: relative;
}
.cid-uhqw9vMgXP .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-uhqw9vMgXP .nav-link:hover:before {
  width: 100%;
}
.cid-uhqw9vMgXP .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-uhqw9vMgXP .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uhqw9vMgXP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uhqw9vMgXP .dropdown-item:hover,
.cid-uhqw9vMgXP .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-uhqw9vMgXP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhqw9vMgXP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhqw9vMgXP .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uhqw9vMgXP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhqw9vMgXP .container {
  display: flex;
  margin: auto;
}
.cid-uhqw9vMgXP .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhqw9vMgXP .dropdown-menu,
.cid-uhqw9vMgXP .navbar.opened {
  background: #ffffff !important;
}
.cid-uhqw9vMgXP .nav-item:focus,
.cid-uhqw9vMgXP .nav-link:focus {
  outline: none;
}
.cid-uhqw9vMgXP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhqw9vMgXP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhqw9vMgXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhqw9vMgXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhqw9vMgXP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhqw9vMgXP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhqw9vMgXP .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uhqw9vMgXP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-uhqw9vMgXP .navbar.opened {
  transition: all 0.3s;
}
.cid-uhqw9vMgXP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhqw9vMgXP .navbar .navbar-logo img {
  width: auto;
}
.cid-uhqw9vMgXP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhqw9vMgXP .navbar.collapsed {
  justify-content: center;
}
.cid-uhqw9vMgXP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhqw9vMgXP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhqw9vMgXP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uhqw9vMgXP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhqw9vMgXP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhqw9vMgXP .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-uhqw9vMgXP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhqw9vMgXP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhqw9vMgXP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhqw9vMgXP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhqw9vMgXP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhqw9vMgXP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhqw9vMgXP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhqw9vMgXP .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-uhqw9vMgXP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhqw9vMgXP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhqw9vMgXP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhqw9vMgXP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhqw9vMgXP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhqw9vMgXP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhqw9vMgXP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhqw9vMgXP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhqw9vMgXP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhqw9vMgXP .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-uhqw9vMgXP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhqw9vMgXP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhqw9vMgXP .dropdown-item.active,
.cid-uhqw9vMgXP .dropdown-item:active {
  background-color: transparent;
}
.cid-uhqw9vMgXP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhqw9vMgXP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhqw9vMgXP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhqw9vMgXP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhqw9vMgXP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhqw9vMgXP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhqw9vMgXP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhqw9vMgXP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhqw9vMgXP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhqw9vMgXP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-uhqw9vMgXP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhqw9vMgXP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhqw9vMgXP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhqw9vMgXP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhqw9vMgXP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhqw9vMgXP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhqw9vMgXP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhqw9vMgXP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhqw9vMgXP .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uhqw9vMgXP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhqw9vMgXP .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-uhqw9vMgXP .navbar {
    height: 70px;
  }
  .cid-uhqw9vMgXP .navbar.opened {
    height: auto;
  }
  .cid-uhqw9vMgXP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhqw9wrikM {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uhqw9wrikM .mbr-section-title {
  color: #ed155a;
}
.cid-uhqw9wrikM .mbr-text,
.cid-uhqw9wrikM .mbr-section-btn {
  color: #160830;
}
.cid-uhqw9wrikM .mbr-section-subtitle {
  color: #ed155a;
}
.cid-uhqw9wrikM img {
  border-radius: 2rem;
}
.cid-uhqw9wrikM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqw9wrikM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqB7n8ILY {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uhqB7n8ILY .mbr-section-title {
  color: #ed155a;
  text-align: right;
}
.cid-uhqB7n8ILY .mbr-text,
.cid-uhqB7n8ILY .mbr-section-btn {
  color: #160830;
  text-align: right;
}
.cid-uhqB7n8ILY .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uhqB7n8ILY img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uhqB7n8ILY .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uhqB7n8ILY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqB7n8ILY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqE51RnZw {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhqE51RnZw .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ed155a;
  margin-bottom: 1rem;
}
.cid-uhqE51RnZw .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uhqE51RnZw .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uhqE51RnZw .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #160830;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-uhqE51RnZw .card-wrapper:hover {
  background: #ed155a;
}
.cid-uhqE51RnZw .card-title,
.cid-uhqE51RnZw .card-box {
  color: #ffffff;
}
.cid-uhqE51RnZw .main-title,
.cid-uhqE51RnZw .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uhqE51RnZw .card-text {
  color: #ffffff;
}
.cid-uhqE51RnZw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqE51RnZw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqw9x9vDh {
  background-image: url("../../../assets/images/office-1440x960.jpg");
}
.cid-uhqw9x9vDh .row {
  flex-direction: row-reverse;
}
.cid-uhqw9x9vDh .mbr-section-title {
  color: #ffffff;
}
.cid-uhqw9x9vDh .mbr-text,
.cid-uhqw9x9vDh .mbr-section-btn {
  color: #f7f4fd;
}
.cid-uhqw9x9vDh .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uhqw9x9vDh img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uhqw9x9vDh .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uhqw9x9vDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqw9x9vDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRwDYq8vz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-uBRwDYq8vz .row {
  justify-content: space-between;
}
.cid-uBRwDYq8vz .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRwDYq8vz .form-control:focus,
.cid-uBRwDYq8vz .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRwDYq8vz .form-group {
  margin-bottom: 1rem;
}
.cid-uBRwDYq8vz input::-webkit-input-placeholder,
.cid-uBRwDYq8vz textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRwDYq8vz input:-moz-placeholder,
.cid-uBRwDYq8vz textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRwDYq8vz .jq-selectbox li,
.cid-uBRwDYq8vz .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRwDYq8vz .jq-selectbox li:hover,
.cid-uBRwDYq8vz .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRwDYq8vz .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRwDYq8vz .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRwDYq8vz .mbr-text {
  color: #767676;
}
.cid-uBRwDYq8vz .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRwDYq8vz .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRwDYq8vz .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRwDYq8vz .form-block {
    padding: 1rem;
  }
}
.cid-uBRwDYq8vz H4 {
  color: #232323;
}
.cid-uBRwDYq8vz .mbr-section-title,
.cid-uBRwDYq8vz .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRwDYq8vz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRwDYq8vz .form-text {
  color: #353535;
}
.cid-uBRwDYq8vz .text {
  color: #ffffff;
}
.cid-uBRwDYq8vz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRwDYq8vz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqw9z5yqu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uhqw9z5yqu .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-uhqw9z5yqu .btn-social,
.cid-uhqw9z5yqu .mbr-section-title {
  color: #57468b;
}
.cid-uhqw9z5yqu .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-uhqw9z5yqu .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-uhqw9z5yqu .soc-item:hover {
  background: #ffffff;
}
.cid-uhqw9z5yqu .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-uhqw9z5yqu .align-left,
  .cid-uhqw9z5yqu .align-right {
    text-align: center;
  }
  .cid-uhqw9z5yqu .social-list {
    justify-content: center;
  }
  .cid-uhqw9z5yqu .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-uhqw9z5yqu .mbr-text {
  color: #ffffff;
}
.cid-uo4IlYlfpx .navbar-dropdown {
  position: relative !important;
}
.cid-uo4IlYlfpx .navbar-dropdown {
  position: absolute !important;
}
.cid-uo4IlYlfpx .btn {
  padding: 0.3rem 2rem;
}
.cid-uo4IlYlfpx .nav-link {
  position: relative;
}
.cid-uo4IlYlfpx .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-uo4IlYlfpx .nav-link:hover:before {
  width: 100%;
}
.cid-uo4IlYlfpx .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-uo4IlYlfpx .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uo4IlYlfpx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uo4IlYlfpx .dropdown-item:hover,
.cid-uo4IlYlfpx .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-uo4IlYlfpx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uo4IlYlfpx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uo4IlYlfpx .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uo4IlYlfpx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uo4IlYlfpx .container {
  display: flex;
  margin: auto;
}
.cid-uo4IlYlfpx .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uo4IlYlfpx .dropdown-menu,
.cid-uo4IlYlfpx .navbar.opened {
  background: #ffffff !important;
}
.cid-uo4IlYlfpx .nav-item:focus,
.cid-uo4IlYlfpx .nav-link:focus {
  outline: none;
}
.cid-uo4IlYlfpx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uo4IlYlfpx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uo4IlYlfpx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uo4IlYlfpx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uo4IlYlfpx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uo4IlYlfpx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uo4IlYlfpx .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uo4IlYlfpx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-uo4IlYlfpx .navbar.opened {
  transition: all 0.3s;
}
.cid-uo4IlYlfpx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uo4IlYlfpx .navbar .navbar-logo img {
  width: auto;
}
.cid-uo4IlYlfpx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uo4IlYlfpx .navbar.collapsed {
  justify-content: center;
}
.cid-uo4IlYlfpx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uo4IlYlfpx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uo4IlYlfpx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uo4IlYlfpx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uo4IlYlfpx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uo4IlYlfpx .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-uo4IlYlfpx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uo4IlYlfpx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uo4IlYlfpx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uo4IlYlfpx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uo4IlYlfpx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uo4IlYlfpx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uo4IlYlfpx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uo4IlYlfpx .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-uo4IlYlfpx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uo4IlYlfpx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uo4IlYlfpx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uo4IlYlfpx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uo4IlYlfpx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uo4IlYlfpx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uo4IlYlfpx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uo4IlYlfpx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uo4IlYlfpx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uo4IlYlfpx .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-uo4IlYlfpx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uo4IlYlfpx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uo4IlYlfpx .dropdown-item.active,
.cid-uo4IlYlfpx .dropdown-item:active {
  background-color: transparent;
}
.cid-uo4IlYlfpx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uo4IlYlfpx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uo4IlYlfpx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uo4IlYlfpx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uo4IlYlfpx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uo4IlYlfpx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uo4IlYlfpx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uo4IlYlfpx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uo4IlYlfpx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uo4IlYlfpx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-uo4IlYlfpx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uo4IlYlfpx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo4IlYlfpx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo4IlYlfpx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uo4IlYlfpx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo4IlYlfpx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uo4IlYlfpx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uo4IlYlfpx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo4IlYlfpx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uo4IlYlfpx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uo4IlYlfpx .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-uo4IlYlfpx .navbar {
    height: 70px;
  }
  .cid-uo4IlYlfpx .navbar.opened {
    height: auto;
  }
  .cid-uo4IlYlfpx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo4IlZmsyX {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo4IlZmsyX .mbr-section-title {
  color: #ed155a;
}
.cid-uo4IlZmsyX .mbr-text,
.cid-uo4IlZmsyX .mbr-section-btn {
  color: #160830;
}
.cid-uo4IlZmsyX .mbr-section-subtitle {
  color: #160830;
}
.cid-uo4IlZmsyX img {
  border-radius: 2rem;
}
.cid-uo4IlZmsyX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo4IlZmsyX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo5UzTnaeR {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uo5UzTnaeR .mbr-section-title {
  color: #ffffff;
}
.cid-uo5UzTnaeR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uo5UzTnaeR .line {
  background: #232323;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-uo5UzTnaeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo5UzTnaeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo5Zq3L4CI {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uo5Zq3L4CI .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ed155a;
  margin-bottom: 1rem;
}
.cid-uo5Zq3L4CI .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uo5Zq3L4CI .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uo5Zq3L4CI .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-uo5Zq3L4CI .card-wrapper:hover {
  background: transparent;
}
.cid-uo5Zq3L4CI .card-title,
.cid-uo5Zq3L4CI .card-box {
  color: #ffffff;
}
.cid-uo5Zq3L4CI .main-title,
.cid-uo5Zq3L4CI .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uo5Zq3L4CI .card-text {
  color: #bbbbbb;
}
.cid-uo5Zq3L4CI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo5Zq3L4CI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo4Im1yt3I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo4Im1yt3I .row {
  flex-direction: row-reverse;
}
.cid-uo4Im1yt3I .mbr-section-title {
  color: #ed155a;
}
.cid-uo4Im1yt3I .mbr-text,
.cid-uo4Im1yt3I .mbr-section-btn {
  color: #160830;
}
.cid-uo4Im1yt3I .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uo4Im1yt3I img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uo4Im1yt3I .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uo4Im1yt3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo4Im1yt3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo68zuglGv {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uo68zuglGv .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-uo68zuglGv .mbr-text,
.cid-uo68zuglGv .mbr-section-btn {
  color: #bbbbbb;
  text-align: right;
}
.cid-uo68zuglGv .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uo68zuglGv img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uo68zuglGv .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uo68zuglGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo68zuglGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo6caF5zMY {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uo6caF5zMY .row {
  flex-direction: row-reverse;
}
.cid-uo6caF5zMY .mbr-section-title {
  color: #ed155a;
}
.cid-uo6caF5zMY .mbr-text,
.cid-uo6caF5zMY .mbr-section-btn {
  color: #160830;
}
.cid-uo6caF5zMY .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uo6caF5zMY img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uo6caF5zMY .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uo6caF5zMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo6caF5zMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo7yU5Jrmx {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uo7yU5Jrmx .row {
  flex-direction: row-reverse;
}
.cid-uo7yU5Jrmx .mbr-section-title {
  color: #ffffff;
}
.cid-uo7yU5Jrmx .mbr-text,
.cid-uo7yU5Jrmx .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uo7yU5Jrmx .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uo7yU5Jrmx img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uo7yU5Jrmx .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uo7yU5Jrmx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo7yU5Jrmx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo4Im2akZo {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo4Im2akZo .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ed155a;
  margin-bottom: 1rem;
}
.cid-uo4Im2akZo .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uo4Im2akZo .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uo4Im2akZo .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uo4Im2akZo .card-wrapper:hover {
  background: #f4f4f4;
}
.cid-uo4Im2akZo .card-title,
.cid-uo4Im2akZo .card-box {
  color: #000000;
}
.cid-uo4Im2akZo .main-title,
.cid-uo4Im2akZo .title-col {
  text-align: center;
  color: #000000;
}
.cid-uo4Im2akZo .card-text {
  color: #353535;
}
.cid-uo4Im2akZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo4Im2akZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo7Pa3QpMh {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uo7Pa3QpMh .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uo7Pa3QpMh .team-card:hover {
  transform: translateY(-10px);
}
.cid-uo7Pa3QpMh .card-wrap {
  background: #160830;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .cid-uo7Pa3QpMh .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uo7Pa3QpMh .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-uo7Pa3QpMh .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uo7Pa3QpMh .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uo7Pa3QpMh .card-text {
  padding-bottom: 1rem;
}
.cid-uo7Pa3QpMh .social-row {
  text-align: center;
}
.cid-uo7Pa3QpMh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #403f83;
  transition: all 0.3s;
}
.cid-uo7Pa3QpMh .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-uo7Pa3QpMh .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-uo7Pa3QpMh .social-row .soc-item:hover .mbr-iconfont {
  color: #403f83;
}
.cid-uo7Pa3QpMh .mbr-role,
.cid-uo7Pa3QpMh .social-row {
  color: #ffffff;
}
.cid-uo7Pa3QpMh .card-title,
.cid-uo7Pa3QpMh .social-row {
  color: #e43f3f;
}
.cid-uo7Pa3QpMh .card-text,
.cid-uo7Pa3QpMh .mbr-section-btn,
.cid-uo7Pa3QpMh .social-row {
  color: #bbbbbb;
}
.cid-uo7Pa3QpMh .mbr-section-title {
  color: #ffffff;
}
.cid-uo7Pa3QpMh .mbr-section-subtitle {
  color: #160830;
}
.cid-uo7Pa3QpMh .main-title {
  color: #ed155a;
}
.cid-uo7Pa3QpMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo7Pa3QpMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBQM33hqAY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-uBQM33hqAY .row {
  justify-content: space-between;
}
.cid-uBQM33hqAY .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBQM33hqAY .form-control:focus,
.cid-uBQM33hqAY .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBQM33hqAY .form-group {
  margin-bottom: 1rem;
}
.cid-uBQM33hqAY input::-webkit-input-placeholder,
.cid-uBQM33hqAY textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBQM33hqAY input:-moz-placeholder,
.cid-uBQM33hqAY textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBQM33hqAY .jq-selectbox li,
.cid-uBQM33hqAY .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBQM33hqAY .jq-selectbox li:hover,
.cid-uBQM33hqAY .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBQM33hqAY .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBQM33hqAY .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBQM33hqAY .mbr-text {
  color: #767676;
}
.cid-uBQM33hqAY .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBQM33hqAY .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBQM33hqAY .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBQM33hqAY .form-block {
    padding: 1rem;
  }
}
.cid-uBQM33hqAY H4 {
  color: #232323;
}
.cid-uBQM33hqAY .mbr-section-title,
.cid-uBQM33hqAY .mbr-section-btn {
  color: #ffffff;
}
.cid-uBQM33hqAY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBQM33hqAY .form-text {
  color: #353535;
}
.cid-uBQM33hqAY .text {
  color: #ffffff;
}
.cid-uBQM33hqAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBQM33hqAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo4Im5Us6z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uo4Im5Us6z .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-uo4Im5Us6z .btn-social,
.cid-uo4Im5Us6z .mbr-section-title {
  color: #57468b;
}
.cid-uo4Im5Us6z .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-uo4Im5Us6z .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-uo4Im5Us6z .soc-item:hover {
  background: #ffffff;
}
.cid-uo4Im5Us6z .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-uo4Im5Us6z .align-left,
  .cid-uo4Im5Us6z .align-right {
    text-align: center;
  }
  .cid-uo4Im5Us6z .social-list {
    justify-content: center;
  }
  .cid-uo4Im5Us6z .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-uo4Im5Us6z .mbr-text {
  color: #ffffff;
}
.cid-uwA3eFY215 .navbar-dropdown {
  position: relative !important;
}
.cid-uwA3eFY215 .navbar-dropdown {
  position: absolute !important;
}
.cid-uwA3eFY215 .btn {
  padding: 0.3rem 2rem;
}
.cid-uwA3eFY215 .nav-link {
  position: relative;
}
.cid-uwA3eFY215 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #160830;
}
.cid-uwA3eFY215 .nav-link:hover:before {
  width: 100%;
}
.cid-uwA3eFY215 .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-uwA3eFY215 .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwA3eFY215 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwA3eFY215 .dropdown-item:hover,
.cid-uwA3eFY215 .dropdown-item:focus {
  background: #160830 !important;
  color: white !important;
}
.cid-uwA3eFY215 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwA3eFY215 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwA3eFY215 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uwA3eFY215 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwA3eFY215 .container {
  display: flex;
  margin: auto;
}
.cid-uwA3eFY215 .iconfont-wrapper {
  color: #ed155a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwA3eFY215 .dropdown-menu,
.cid-uwA3eFY215 .navbar.opened {
  background: #ffffff !important;
}
.cid-uwA3eFY215 .nav-item:focus,
.cid-uwA3eFY215 .nav-link:focus {
  outline: none;
}
.cid-uwA3eFY215 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwA3eFY215 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwA3eFY215 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwA3eFY215 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwA3eFY215 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwA3eFY215 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwA3eFY215 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uwA3eFY215 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-uwA3eFY215 .navbar.opened {
  transition: all 0.3s;
}
.cid-uwA3eFY215 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwA3eFY215 .navbar .navbar-logo img {
  width: auto;
}
.cid-uwA3eFY215 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwA3eFY215 .navbar.collapsed {
  justify-content: center;
}
.cid-uwA3eFY215 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwA3eFY215 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwA3eFY215 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uwA3eFY215 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwA3eFY215 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwA3eFY215 .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-uwA3eFY215 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwA3eFY215 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwA3eFY215 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwA3eFY215 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwA3eFY215 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwA3eFY215 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwA3eFY215 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwA3eFY215 .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-uwA3eFY215 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwA3eFY215 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwA3eFY215 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwA3eFY215 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwA3eFY215 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwA3eFY215 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uwA3eFY215 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwA3eFY215 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwA3eFY215 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwA3eFY215 .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-uwA3eFY215 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwA3eFY215 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwA3eFY215 .dropdown-item.active,
.cid-uwA3eFY215 .dropdown-item:active {
  background-color: transparent;
}
.cid-uwA3eFY215 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwA3eFY215 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwA3eFY215 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwA3eFY215 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uwA3eFY215 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwA3eFY215 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwA3eFY215 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwA3eFY215 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwA3eFY215 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwA3eFY215 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #322581;
}
.cid-uwA3eFY215 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwA3eFY215 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwA3eFY215 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwA3eFY215 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwA3eFY215 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwA3eFY215 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwA3eFY215 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwA3eFY215 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwA3eFY215 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uwA3eFY215 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwA3eFY215 .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-uwA3eFY215 .navbar {
    height: 70px;
  }
  .cid-uwA3eFY215 .navbar.opened {
    height: auto;
  }
  .cid-uwA3eFY215 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwA3eGROGM {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwA3eGROGM .mbr-section-title {
  color: #ed155a;
}
.cid-uwA3eGROGM .mbr-text,
.cid-uwA3eGROGM .mbr-section-btn {
  color: #160830;
}
.cid-uwA3eGROGM .mbr-section-subtitle {
  color: #160830;
}
.cid-uwA3eGROGM img {
  border-radius: 2rem;
}
.cid-uwA3eGROGM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eGROGM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eHgHOu {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uwA3eHgHOu .mbr-section-title {
  color: #ffffff;
}
.cid-uwA3eHgHOu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwA3eHgHOu .line {
  background: #232323;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-uwA3eHgHOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eHgHOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eHzDeV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uwA3eHzDeV .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ed155a;
  margin-bottom: 1rem;
}
.cid-uwA3eHzDeV .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uwA3eHzDeV .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uwA3eHzDeV .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-uwA3eHzDeV .card-wrapper:hover {
  background: transparent;
}
.cid-uwA3eHzDeV .card-title,
.cid-uwA3eHzDeV .card-box {
  color: #ffffff;
}
.cid-uwA3eHzDeV .main-title,
.cid-uwA3eHzDeV .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uwA3eHzDeV .card-text {
  color: #bbbbbb;
}
.cid-uwA3eHzDeV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eHzDeV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eIdSMb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwA3eIdSMb .row {
  flex-direction: row-reverse;
}
.cid-uwA3eIdSMb .mbr-section-title {
  color: #ed155a;
}
.cid-uwA3eIdSMb .mbr-text,
.cid-uwA3eIdSMb .mbr-section-btn {
  color: #160830;
}
.cid-uwA3eIdSMb .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwA3eIdSMb img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uwA3eIdSMb .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uwA3eIdSMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eIdSMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eIzHBv {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uwA3eIzHBv .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-uwA3eIzHBv .mbr-text,
.cid-uwA3eIzHBv .mbr-section-btn {
  color: #bbbbbb;
  text-align: right;
}
.cid-uwA3eIzHBv .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwA3eIzHBv img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uwA3eIzHBv .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uwA3eIzHBv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eIzHBv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eK0c1O {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uwA3eK0c1O .row {
  flex-direction: row-reverse;
}
.cid-uwA3eK0c1O .mbr-section-title {
  color: #ed155a;
}
.cid-uwA3eK0c1O .mbr-text,
.cid-uwA3eK0c1O .mbr-section-btn {
  color: #160830;
}
.cid-uwA3eK0c1O .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwA3eK0c1O img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uwA3eK0c1O .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uwA3eK0c1O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eK0c1O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eKwVNL {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #212428;
}
.cid-uwA3eKwVNL .row {
  flex-direction: row-reverse;
}
.cid-uwA3eKwVNL .mbr-section-title {
  color: #ffffff;
}
.cid-uwA3eKwVNL .mbr-text,
.cid-uwA3eKwVNL .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uwA3eKwVNL .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwA3eKwVNL img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-uwA3eKwVNL .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uwA3eKwVNL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA3eKwVNL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxrkbXUsSk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxrkbXUsSk .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-uxrkbXUsSk .card-box {
  z-index: 2;
  position: relative;
}
.cid-uxrkbXUsSk .mbr-iconfont {
  font-size: 2rem;
  color: #f7f4fd;
  background: #021938;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
}
.cid-uxrkbXUsSk .mbr-iconfont-big {
  font-size: 16rem;
  color: #021938;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-uxrkbXUsSk .card-title,
.cid-uxrkbXUsSk .card-text {
  transition: all 0.3s;
}
.cid-uxrkbXUsSk .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 6px;
  background: #ed155a;
  transition: all 0.3s;
}
.cid-uxrkbXUsSk .card-wrapper:hover {
  background: #ed155a;
}
.cid-uxrkbXUsSk .card-wrapper:hover .mbr-iconfont-big {
  color: #418ff8;
  transform: rotate(-20deg);
}
.cid-uxrkbXUsSk .card-wrapper:hover .card-title,
.cid-uxrkbXUsSk .card-wrapper:hover .card-text {
  color: #f7f4fd;
}
@media (max-width: 767px) {
  .cid-uxrkbXUsSk .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uxrkbXUsSk .card-title,
.cid-uxrkbXUsSk .iconfont-wrapper {
  color: #160830;
}
.cid-uxrkbXUsSk .card-text {
  color: #ffffff;
}
.cid-uxrkbXUsSk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxrkbXUsSk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRCcHYjTz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-uBRCcHYjTz .row {
  justify-content: space-between;
}
.cid-uBRCcHYjTz .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-uBRCcHYjTz .form-control:focus,
.cid-uBRCcHYjTz .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uBRCcHYjTz .form-group {
  margin-bottom: 1rem;
}
.cid-uBRCcHYjTz input::-webkit-input-placeholder,
.cid-uBRCcHYjTz textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-uBRCcHYjTz input:-moz-placeholder,
.cid-uBRCcHYjTz textarea:-moz-placeholder {
  color: #353535;
}
.cid-uBRCcHYjTz .jq-selectbox li,
.cid-uBRCcHYjTz .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRCcHYjTz .jq-selectbox li:hover,
.cid-uBRCcHYjTz .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uBRCcHYjTz .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRCcHYjTz .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-uBRCcHYjTz .mbr-text {
  color: #767676;
}
.cid-uBRCcHYjTz .form-block {
  padding: 3rem;
  position: relative;
}
.cid-uBRCcHYjTz .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-uBRCcHYjTz .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uBRCcHYjTz .form-block {
    padding: 1rem;
  }
}
.cid-uBRCcHYjTz H4 {
  color: #232323;
}
.cid-uBRCcHYjTz .mbr-section-title,
.cid-uBRCcHYjTz .mbr-section-btn {
  color: #ffffff;
}
.cid-uBRCcHYjTz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBRCcHYjTz .form-text {
  color: #353535;
}
.cid-uBRCcHYjTz .text {
  color: #ffffff;
}
.cid-uBRCcHYjTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRCcHYjTz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA3eMxfPz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uwA3eMxfPz .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-uwA3eMxfPz .btn-social,
.cid-uwA3eMxfPz .mbr-section-title {
  color: #57468b;
}
.cid-uwA3eMxfPz .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #ed155a;
}
.cid-uwA3eMxfPz .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-uwA3eMxfPz .soc-item:hover {
  background: #ffffff;
}
.cid-uwA3eMxfPz .soc-item:hover span {
  color: #ed155a !important;
}
@media (max-width: 992px) {
  .cid-uwA3eMxfPz .align-left,
  .cid-uwA3eMxfPz .align-right {
    text-align: center;
  }
  .cid-uwA3eMxfPz .social-list {
    justify-content: center;
  }
  .cid-uwA3eMxfPz .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-uwA3eMxfPz .mbr-text {
  color: #ffffff;
}
