body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: 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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %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-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPgu6DMBIR {
  background-image: url("../../../assets/images/nosotros.png");
}
.cid-uPgu6DMBIR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgu6DMBIR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHefDnBiNu {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHefDnBiNu .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uHefDnBiNu img,
.cid-uHefDnBiNu .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uHefDnBiNu .item:focus,
.cid-uHefDnBiNu span:focus {
  outline: none;
}
.cid-uHefDnBiNu .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uHefDnBiNu .item {
    margin-bottom: 1rem;
  }
}
.cid-uHefDnBiNu .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHefDnBiNu .mbr-section-title {
  color: #232323;
}
.cid-uHefDnBiNu .mbr-text,
.cid-uHefDnBiNu .mbr-section-btn {
  color: #232323;
}
.cid-uHefDnBiNu .item-title {
  color: #232323;
}
.cid-uHefDnBiNu .content-head {
  max-width: 800px;
}
.cid-uGFYQ6bPE9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGFYQ6bPE9 .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uGFYQ6bPE9 img,
.cid-uGFYQ6bPE9 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uGFYQ6bPE9 .item:focus,
.cid-uGFYQ6bPE9 span:focus {
  outline: none;
}
.cid-uGFYQ6bPE9 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uGFYQ6bPE9 .item {
    margin-bottom: 1rem;
  }
}
.cid-uGFYQ6bPE9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGFYQ6bPE9 .mbr-section-title {
  color: #232323;
}
.cid-uGFYQ6bPE9 .mbr-text,
.cid-uGFYQ6bPE9 .mbr-section-btn {
  color: #232323;
}
.cid-uGFYQ6bPE9 .item-title {
  color: #232323;
}
.cid-uGFYQ6bPE9 .content-head {
  max-width: 800px;
}
.cid-uHYsAeqUGS {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHYsAeqUGS .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uHYsAeqUGS img,
.cid-uHYsAeqUGS .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uHYsAeqUGS .item:focus,
.cid-uHYsAeqUGS span:focus {
  outline: none;
}
.cid-uHYsAeqUGS .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uHYsAeqUGS .item {
    margin-bottom: 1rem;
  }
}
.cid-uHYsAeqUGS .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHYsAeqUGS .mbr-section-title {
  color: #232323;
}
.cid-uHYsAeqUGS .mbr-text,
.cid-uHYsAeqUGS .mbr-section-btn {
  color: #232323;
}
.cid-uHYsAeqUGS .item-title {
  color: #232323;
}
.cid-uHYsAeqUGS .content-head {
  max-width: 800px;
}
.cid-uGFZVHRObT {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGFZVHRObT .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uGFZVHRObT img,
.cid-uGFZVHRObT .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uGFZVHRObT .item:focus,
.cid-uGFZVHRObT span:focus {
  outline: none;
}
.cid-uGFZVHRObT .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uGFZVHRObT .item {
    margin-bottom: 1rem;
  }
}
.cid-uGFZVHRObT .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGFZVHRObT .mbr-section-title {
  color: #232323;
}
.cid-uGFZVHRObT .mbr-text,
.cid-uGFZVHRObT .mbr-section-btn {
  color: #232323;
}
.cid-uGFZVHRObT .item-title {
  color: #232323;
}
.cid-uGFZVHRObT .content-head {
  max-width: 800px;
}
.cid-uGGis6owI4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGGis6owI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGis6owI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGis6owI4 .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGGis6owI4 .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-uGGis6owI4 .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-uGGis6owI4 .card-col {
    padding: 20px 0 0;
  }
}
.cid-uGGis6owI4 .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-uGGis6owI4 .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-uGGis6owI4 .card-wrapper {
    max-width: 100%;
  }
}
.cid-uGGis6owI4 .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-uGGis6owI4 .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-uGGis6owI4 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uGGis6owI4 .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-uGGis6owI4 .image-wrapper {
    max-width: 100%;
  }
}
.cid-uGGis6owI4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGGis6owI4 .mbr-text,
.cid-uGGis6owI4 .mbr-section-btn {
  color: #232323;
}
.cid-uGGbFbFhHG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGbFbFhHG .row {
  justify-content: center;
}
.cid-uGGbFbFhHG .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGbFbFhHG .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGbFbFhHG .card {
  padding: 0 15px;
}
.cid-uGGbFbFhHG .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGbFbFhHG .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGbFbFhHG .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGbFbFhHG .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGbFbFhHG .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGbFbFhHG .mbr-card-title {
  text-align: center;
}
.cid-uGGbFbFhHG .mbr-card-desc {
  text-align: center;
}
.cid-uGG3wQR7rD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGG3wQR7rD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGG3wQR7rD .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGG3wQR7rD .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGG3wQR7rD .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGG3wQR7rD .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGG3wQR7rD .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGG3wQR7rD .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGG3wQR7rD .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGG3wQR7rD .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGG3wQR7rD .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGG3wQR7rD .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGG3wQR7rD .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGG3wQR7rD .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGG3wQR7rD .list-block {
  position: relative;
}
.cid-uGG3wQR7rD .list-block h4,
.cid-uGG3wQR7rD .list-block p {
  padding-left: 4.5rem;
}
.cid-uGG3wQR7rD .card-img {
  display: block;
}
.cid-uGG3wQR7rD input,
.cid-uGG3wQR7rD textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGG3wQR7rD input:focus,
.cid-uGG3wQR7rD textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGG3wQR7rD .form-control,
.cid-uGG3wQR7rD .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGG3wQR7rD .form-control:hover,
.cid-uGG3wQR7rD .field-input:hover,
.cid-uGG3wQR7rD .form-control:focus,
.cid-uGG3wQR7rD .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGG3wQR7rD input::-webkit-input-placeholder,
.cid-uGG3wQR7rD textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGG3wQR7rD input:-moz-placeholder,
.cid-uGG3wQR7rD textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGG3wQR7rD .jq-selectbox li,
.cid-uGG3wQR7rD .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGG3wQR7rD .jq-selectbox li:hover,
.cid-uGG3wQR7rD .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGG3wQR7rD .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGG3wQR7rD .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGG3wQR7rD .mbr-form {
  max-width: 550px;
}
.cid-uGG3wQR7rD .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGG3wQR7rD .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGG3wQR7rD .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGG3wQR7rD .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGG3wQR7rD .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGG3wQR7rD .mbr-form textarea {
  min-height: 100px;
}
.cid-uGG3wQR7rD .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGG3wQR7rD .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGG3wQR7rD .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGG3wQR7rD .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGG3wQR7rD .mbr-section-title,
  .cid-uGG3wQR7rD .content-title,
  .cid-uGG3wQR7rD .mbr-section-btn {
    text-align: left;
  }
}
.cid-uIgfRTlv9d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIgfRTlv9d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgfRTlv9d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uIgfRTlv9d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uIgfRTlv9d .row {
  flex-direction: row-reverse;
}
.cid-uIgfRTlv9d img {
  width: 100%;
}
.cid-uGG3ACWlBD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGGyemg7qd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGGyemg7qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGyemg7qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGyemg7qd .row {
  flex-direction: row-reverse;
}
.cid-uGGyukqhgc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjfhReTmK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjfhReTmK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjfhReTmK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHjfhReTmK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHjfhReTmK .row {
  flex-direction: row-reverse;
}
.cid-uHjfhReTmK img {
  width: 100%;
}
.cid-uHjfO1ERSR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjfO1ERSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjfO1ERSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHjfO1ERSR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHjfO1ERSR .row {
  flex-direction: row-reverse;
}
.cid-uHjfO1ERSR img {
  width: 100%;
}
.cid-uGGoi8CYG8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGoi8CYG8 .row {
  justify-content: center;
}
.cid-uGGoi8CYG8 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGoi8CYG8 .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGoi8CYG8 .card {
  padding: 0 15px;
}
.cid-uGGoi8CYG8 .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGoi8CYG8 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGoi8CYG8 .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGoi8CYG8 .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGoi8CYG8 .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGoi8CYG8 .mbr-card-title {
  text-align: center;
}
.cid-uGGoi8CYG8 .mbr-card-desc {
  text-align: center;
}
.cid-uGGoiar2xP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGGoiar2xP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGGoiar2xP .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGGoiar2xP .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGGoiar2xP .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGGoiar2xP .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGGoiar2xP .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGGoiar2xP .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGGoiar2xP .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGGoiar2xP .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGGoiar2xP .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGGoiar2xP .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGGoiar2xP .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGGoiar2xP .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGGoiar2xP .list-block {
  position: relative;
}
.cid-uGGoiar2xP .list-block h4,
.cid-uGGoiar2xP .list-block p {
  padding-left: 4.5rem;
}
.cid-uGGoiar2xP .card-img {
  display: block;
}
.cid-uGGoiar2xP input,
.cid-uGGoiar2xP textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGGoiar2xP input:focus,
.cid-uGGoiar2xP textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGGoiar2xP .form-control,
.cid-uGGoiar2xP .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGoiar2xP .form-control:hover,
.cid-uGGoiar2xP .field-input:hover,
.cid-uGGoiar2xP .form-control:focus,
.cid-uGGoiar2xP .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGoiar2xP input::-webkit-input-placeholder,
.cid-uGGoiar2xP textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGGoiar2xP input:-moz-placeholder,
.cid-uGGoiar2xP textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGGoiar2xP .jq-selectbox li,
.cid-uGGoiar2xP .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGoiar2xP .jq-selectbox li:hover,
.cid-uGGoiar2xP .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGoiar2xP .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGoiar2xP .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGoiar2xP .mbr-form {
  max-width: 550px;
}
.cid-uGGoiar2xP .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGGoiar2xP .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGGoiar2xP .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGGoiar2xP .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGGoiar2xP .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGGoiar2xP .mbr-form textarea {
  min-height: 100px;
}
.cid-uGGoiar2xP .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGGoiar2xP .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGGoiar2xP .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGGoiar2xP .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGGoiar2xP .mbr-section-title,
  .cid-uGGoiar2xP .content-title,
  .cid-uGGoiar2xP .mbr-section-btn {
    text-align: left;
  }
}
.cid-uGGoif1XFR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGGz27KksO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGGz27KksO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGz27KksO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGz27KksO .row {
  flex-direction: row-reverse;
}
.cid-uGGz29HYx1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjbT0eBup {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjbT0eBup .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjbT0eBup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHjbT0eBup .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHjbT0eBup .row {
  flex-direction: row-reverse;
}
.cid-uHjbT0eBup img {
  width: 100%;
}
.cid-uHjc8sb5Pb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjc8sb5Pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjc8sb5Pb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHjc8sb5Pb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHjc8sb5Pb .row {
  flex-direction: row-reverse;
}
.cid-uHjc8sb5Pb img {
  width: 100%;
}
.cid-uHjcI842Gu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHjcI842Gu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjcI842Gu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHjcI842Gu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHjcI842Gu .row {
  flex-direction: row-reverse;
}
.cid-uHjcI842Gu img {
  width: 100%;
}
.cid-uGGz2ivlnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGz2ivlnG .row {
  justify-content: center;
}
.cid-uGGz2ivlnG .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGz2ivlnG .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGz2ivlnG .card {
  padding: 0 15px;
}
.cid-uGGz2ivlnG .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGz2ivlnG .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGz2ivlnG .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGz2ivlnG .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGz2ivlnG .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGz2ivlnG .mbr-card-title {
  text-align: center;
}
.cid-uGGz2ivlnG .mbr-card-desc {
  text-align: center;
}
.cid-uGGz2l9cX7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGGz2l9cX7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGGz2l9cX7 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGGz2l9cX7 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGGz2l9cX7 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGGz2l9cX7 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGGz2l9cX7 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGGz2l9cX7 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGGz2l9cX7 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGGz2l9cX7 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGGz2l9cX7 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGGz2l9cX7 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGGz2l9cX7 .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGGz2l9cX7 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGGz2l9cX7 .list-block {
  position: relative;
}
.cid-uGGz2l9cX7 .list-block h4,
.cid-uGGz2l9cX7 .list-block p {
  padding-left: 4.5rem;
}
.cid-uGGz2l9cX7 .card-img {
  display: block;
}
.cid-uGGz2l9cX7 input,
.cid-uGGz2l9cX7 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGGz2l9cX7 input:focus,
.cid-uGGz2l9cX7 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGGz2l9cX7 .form-control,
.cid-uGGz2l9cX7 .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGz2l9cX7 .form-control:hover,
.cid-uGGz2l9cX7 .field-input:hover,
.cid-uGGz2l9cX7 .form-control:focus,
.cid-uGGz2l9cX7 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGz2l9cX7 input::-webkit-input-placeholder,
.cid-uGGz2l9cX7 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGGz2l9cX7 input:-moz-placeholder,
.cid-uGGz2l9cX7 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGGz2l9cX7 .jq-selectbox li,
.cid-uGGz2l9cX7 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGz2l9cX7 .jq-selectbox li:hover,
.cid-uGGz2l9cX7 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGz2l9cX7 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGz2l9cX7 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGz2l9cX7 .mbr-form {
  max-width: 550px;
}
.cid-uGGz2l9cX7 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGGz2l9cX7 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGGz2l9cX7 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGGz2l9cX7 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGGz2l9cX7 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGGz2l9cX7 .mbr-form textarea {
  min-height: 100px;
}
.cid-uGGz2l9cX7 .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGGz2l9cX7 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGGz2l9cX7 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGGz2l9cX7 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGGz2l9cX7 .mbr-section-title,
  .cid-uGGz2l9cX7 .content-title,
  .cid-uGGz2l9cX7 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uGGz2ndUAJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGGzLOkNdo {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGGzLOkNdo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGzLOkNdo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGzLOkNdo .row {
  flex-direction: row-reverse;
}
.cid-uGGzLR7wQL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHgPBLsdOd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHgPBLsdOd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgPBLsdOd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHgPBLsdOd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHgPBLsdOd .row {
  flex-direction: row-reverse;
}
.cid-uHgPBLsdOd img {
  width: 100%;
}
.cid-uHj9Jpv7wF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHj9Jpv7wF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHj9Jpv7wF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHj9Jpv7wF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHj9Jpv7wF .row {
  flex-direction: row-reverse;
}
.cid-uHj9Jpv7wF img {
  width: 100%;
}
.cid-uGGzM2ORve {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGzM2ORve .row {
  justify-content: center;
}
.cid-uGGzM2ORve .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGzM2ORve .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGzM2ORve .card {
  padding: 0 15px;
}
.cid-uGGzM2ORve .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGzM2ORve .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGzM2ORve .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGzM2ORve .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGzM2ORve .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGzM2ORve .mbr-card-title {
  text-align: center;
}
.cid-uGGzM2ORve .mbr-card-desc {
  text-align: center;
}
.cid-uGGzM6l7qE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGGzM6l7qE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGGzM6l7qE .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGGzM6l7qE .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGGzM6l7qE .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGGzM6l7qE .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGGzM6l7qE .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGGzM6l7qE .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGGzM6l7qE .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGGzM6l7qE .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGGzM6l7qE .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGGzM6l7qE .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGGzM6l7qE .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGGzM6l7qE .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGGzM6l7qE .list-block {
  position: relative;
}
.cid-uGGzM6l7qE .list-block h4,
.cid-uGGzM6l7qE .list-block p {
  padding-left: 4.5rem;
}
.cid-uGGzM6l7qE .card-img {
  display: block;
}
.cid-uGGzM6l7qE input,
.cid-uGGzM6l7qE textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGGzM6l7qE input:focus,
.cid-uGGzM6l7qE textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGGzM6l7qE .form-control,
.cid-uGGzM6l7qE .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGzM6l7qE .form-control:hover,
.cid-uGGzM6l7qE .field-input:hover,
.cid-uGGzM6l7qE .form-control:focus,
.cid-uGGzM6l7qE .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGzM6l7qE input::-webkit-input-placeholder,
.cid-uGGzM6l7qE textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGGzM6l7qE input:-moz-placeholder,
.cid-uGGzM6l7qE textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGGzM6l7qE .jq-selectbox li,
.cid-uGGzM6l7qE .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGzM6l7qE .jq-selectbox li:hover,
.cid-uGGzM6l7qE .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGzM6l7qE .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGzM6l7qE .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGzM6l7qE .mbr-form {
  max-width: 550px;
}
.cid-uGGzM6l7qE .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGGzM6l7qE .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGGzM6l7qE .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGGzM6l7qE .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGGzM6l7qE .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGGzM6l7qE .mbr-form textarea {
  min-height: 100px;
}
.cid-uGGzM6l7qE .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGGzM6l7qE .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGGzM6l7qE .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGGzM6l7qE .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGGzM6l7qE .mbr-section-title,
  .cid-uGGzM6l7qE .content-title,
  .cid-uGGzM6l7qE .mbr-section-btn {
    text-align: left;
  }
}
.cid-uGGzMaXKiF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHgIsmwW2T {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHgIsmwW2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgIsmwW2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHgIXHpOGD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHgIXHpOGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgIXHpOGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHgIXHpOGD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHgIXHpOGD .row {
  flex-direction: row-reverse;
}
.cid-uHgIXHpOGD img {
  width: 100%;
}
.cid-uGGCHGO6AN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHgJi8f5Ck {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHgJi8f5Ck .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgJi8f5Ck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHgJi8f5Ck .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHgJi8f5Ck .row {
  flex-direction: row-reverse;
}
.cid-uHgJi8f5Ck img {
  width: 100%;
}
.cid-uHgJIBidxm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHgJIBidxm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgJIBidxm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHgJIBidxm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHgJIBidxm .row {
  flex-direction: row-reverse;
}
.cid-uHgJIBidxm img {
  width: 100%;
}
.cid-uHgN7Gg23J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHgN7Gg23J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHgN7Gg23J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHgN7Gg23J .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHgN7Gg23J .row {
  flex-direction: row-reverse;
}
.cid-uHgN7Gg23J img {
  width: 100%;
}
.cid-uGGCHRhlIH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGCHRhlIH .row {
  justify-content: center;
}
.cid-uGGCHRhlIH .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGCHRhlIH .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGCHRhlIH .card {
  padding: 0 15px;
}
.cid-uGGCHRhlIH .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGCHRhlIH .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGCHRhlIH .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGCHRhlIH .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGCHRhlIH .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGCHRhlIH .mbr-card-title {
  text-align: center;
}
.cid-uGGCHRhlIH .mbr-card-desc {
  text-align: center;
}
.cid-uGGCHUJ5T6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGGCHUJ5T6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGGCHUJ5T6 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGGCHUJ5T6 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGGCHUJ5T6 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGGCHUJ5T6 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGGCHUJ5T6 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGGCHUJ5T6 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGGCHUJ5T6 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGGCHUJ5T6 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGGCHUJ5T6 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGGCHUJ5T6 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGGCHUJ5T6 .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGGCHUJ5T6 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGGCHUJ5T6 .list-block {
  position: relative;
}
.cid-uGGCHUJ5T6 .list-block h4,
.cid-uGGCHUJ5T6 .list-block p {
  padding-left: 4.5rem;
}
.cid-uGGCHUJ5T6 .card-img {
  display: block;
}
.cid-uGGCHUJ5T6 input,
.cid-uGGCHUJ5T6 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGGCHUJ5T6 input:focus,
.cid-uGGCHUJ5T6 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGGCHUJ5T6 .form-control,
.cid-uGGCHUJ5T6 .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGCHUJ5T6 .form-control:hover,
.cid-uGGCHUJ5T6 .field-input:hover,
.cid-uGGCHUJ5T6 .form-control:focus,
.cid-uGGCHUJ5T6 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGCHUJ5T6 input::-webkit-input-placeholder,
.cid-uGGCHUJ5T6 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGGCHUJ5T6 input:-moz-placeholder,
.cid-uGGCHUJ5T6 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGGCHUJ5T6 .jq-selectbox li,
.cid-uGGCHUJ5T6 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGCHUJ5T6 .jq-selectbox li:hover,
.cid-uGGCHUJ5T6 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGCHUJ5T6 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGCHUJ5T6 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGCHUJ5T6 .mbr-form {
  max-width: 550px;
}
.cid-uGGCHUJ5T6 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGGCHUJ5T6 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGGCHUJ5T6 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGGCHUJ5T6 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGGCHUJ5T6 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGGCHUJ5T6 .mbr-form textarea {
  min-height: 100px;
}
.cid-uGGCHUJ5T6 .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGGCHUJ5T6 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGGCHUJ5T6 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGGCHUJ5T6 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGGCHUJ5T6 .mbr-section-title,
  .cid-uGGCHUJ5T6 .content-title,
  .cid-uGGCHUJ5T6 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uGGCHYPOSs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGGDKhSfSx {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGGDKhSfSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGDKhSfSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGDKhSfSx .row {
  flex-direction: row-reverse;
}
.cid-uGGDKkdDoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGGDKzYQ7e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uGGDKzYQ7e .row {
  justify-content: center;
}
.cid-uGGDKzYQ7e .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGGDKzYQ7e .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uGGDKzYQ7e .card {
  padding: 0 15px;
}
.cid-uGGDKzYQ7e .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uGGDKzYQ7e .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uGGDKzYQ7e .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uGGDKzYQ7e .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uGGDKzYQ7e .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uGGDKzYQ7e .mbr-card-title {
  text-align: center;
}
.cid-uGGDKzYQ7e .mbr-card-desc {
  text-align: center;
}
.cid-uGGDKDPFxi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGGDKDPFxi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGGDKDPFxi .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uGGDKDPFxi .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uGGDKDPFxi .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uGGDKDPFxi .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uGGDKDPFxi .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uGGDKDPFxi .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uGGDKDPFxi .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uGGDKDPFxi .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uGGDKDPFxi .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uGGDKDPFxi .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uGGDKDPFxi .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uGGDKDPFxi .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uGGDKDPFxi .list-block {
  position: relative;
}
.cid-uGGDKDPFxi .list-block h4,
.cid-uGGDKDPFxi .list-block p {
  padding-left: 4.5rem;
}
.cid-uGGDKDPFxi .card-img {
  display: block;
}
.cid-uGGDKDPFxi input,
.cid-uGGDKDPFxi textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uGGDKDPFxi input:focus,
.cid-uGGDKDPFxi textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uGGDKDPFxi .form-control,
.cid-uGGDKDPFxi .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGDKDPFxi .form-control:hover,
.cid-uGGDKDPFxi .field-input:hover,
.cid-uGGDKDPFxi .form-control:focus,
.cid-uGGDKDPFxi .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGDKDPFxi input::-webkit-input-placeholder,
.cid-uGGDKDPFxi textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uGGDKDPFxi input:-moz-placeholder,
.cid-uGGDKDPFxi textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uGGDKDPFxi .jq-selectbox li,
.cid-uGGDKDPFxi .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGDKDPFxi .jq-selectbox li:hover,
.cid-uGGDKDPFxi .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uGGDKDPFxi .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGDKDPFxi .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uGGDKDPFxi .mbr-form {
  max-width: 550px;
}
.cid-uGGDKDPFxi .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uGGDKDPFxi .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uGGDKDPFxi .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uGGDKDPFxi .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uGGDKDPFxi .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uGGDKDPFxi .mbr-form textarea {
  min-height: 100px;
}
.cid-uGGDKDPFxi .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uGGDKDPFxi .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uGGDKDPFxi .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uGGDKDPFxi .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uGGDKDPFxi .mbr-section-title,
  .cid-uGGDKDPFxi .content-title,
  .cid-uGGDKDPFxi .mbr-section-btn {
    text-align: left;
  }
}
.cid-uGGDKJmmX6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfe5oaENo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfe5oaENo nav.navbar {
  position: fixed;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfe5oaENo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfe5oaENo .dropdown-item:hover,
.cid-uHfe5oaENo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfe5oaENo .dropdown-item:hover span {
  color: white;
}
.cid-uHfe5oaENo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfe5oaENo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfe5oaENo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfe5oaENo .nav-link {
  position: relative;
}
.cid-uHfe5oaENo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfe5oaENo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown-menu,
.cid-uHfe5oaENo .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfe5oaENo .nav-item:focus,
.cid-uHfe5oaENo .nav-link:focus {
  outline: none;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfe5oaENo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfe5oaENo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfe5oaENo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfe5oaENo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfe5oaENo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfe5oaENo .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfe5oaENo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfe5oaENo .navbar.collapsed {
  justify-content: center;
}
.cid-uHfe5oaENo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfe5oaENo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfe5oaENo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfe5oaENo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfe5oaENo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfe5oaENo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfe5oaENo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfe5oaENo .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-uHfe5oaENo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfe5oaENo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfe5oaENo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfe5oaENo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfe5oaENo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfe5oaENo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfe5oaENo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfe5oaENo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfe5oaENo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfe5oaENo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfe5oaENo .dropdown-item.active,
.cid-uHfe5oaENo .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfe5oaENo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfe5oaENo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfe5oaENo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfe5oaENo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfe5oaENo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfe5oaENo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfe5oaENo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfe5oaENo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfe5oaENo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfe5oaENo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfe5oaENo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfe5oaENo .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-uHfe5oaENo .navbar {
    height: 70px;
  }
  .cid-uHfe5oaENo .navbar.opened {
    height: auto;
  }
  .cid-uHfe5oaENo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHeyPYDk3g {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHeyPYDk3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHeyPYDk3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHeyH2Jv0I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHeyH2Jv0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHeyH2Jv0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHeyH2Jv0I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHeyH2Jv0I .row {
  flex-direction: row-reverse;
}
.cid-uHeyH2Jv0I img {
  width: 100%;
}
.cid-uHezvtDgzn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHezvtDgzn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHezvtDgzn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHezvtDgzn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHezvtDgzn .row {
  flex-direction: row-reverse;
}
.cid-uHezvtDgzn img {
  width: 100%;
}
.cid-uHeqyWy2sj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHeqyXguz7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uHeqyXguz7 .row {
  justify-content: center;
}
.cid-uHeqyXguz7 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHeqyXguz7 .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uHeqyXguz7 .card {
  padding: 0 15px;
}
.cid-uHeqyXguz7 .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uHeqyXguz7 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uHeqyXguz7 .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uHeqyXguz7 .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uHeqyXguz7 .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uHeqyXguz7 .mbr-card-title {
  text-align: center;
}
.cid-uHeqyXguz7 .mbr-card-desc {
  text-align: center;
}
.cid-uHeqyXOD4Z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uHeqyXOD4Z .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHeqyXOD4Z .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uHeqyXOD4Z .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uHeqyXOD4Z .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uHeqyXOD4Z .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uHeqyXOD4Z .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uHeqyXOD4Z .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uHeqyXOD4Z .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uHeqyXOD4Z .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uHeqyXOD4Z .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uHeqyXOD4Z .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uHeqyXOD4Z .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uHeqyXOD4Z .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uHeqyXOD4Z .list-block {
  position: relative;
}
.cid-uHeqyXOD4Z .list-block h4,
.cid-uHeqyXOD4Z .list-block p {
  padding-left: 4.5rem;
}
.cid-uHeqyXOD4Z .card-img {
  display: block;
}
.cid-uHeqyXOD4Z input,
.cid-uHeqyXOD4Z textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uHeqyXOD4Z input:focus,
.cid-uHeqyXOD4Z textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uHeqyXOD4Z .form-control,
.cid-uHeqyXOD4Z .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHeqyXOD4Z .form-control:hover,
.cid-uHeqyXOD4Z .field-input:hover,
.cid-uHeqyXOD4Z .form-control:focus,
.cid-uHeqyXOD4Z .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uHeqyXOD4Z input::-webkit-input-placeholder,
.cid-uHeqyXOD4Z textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uHeqyXOD4Z input:-moz-placeholder,
.cid-uHeqyXOD4Z textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uHeqyXOD4Z .jq-selectbox li,
.cid-uHeqyXOD4Z .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHeqyXOD4Z .jq-selectbox li:hover,
.cid-uHeqyXOD4Z .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHeqyXOD4Z .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHeqyXOD4Z .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHeqyXOD4Z .mbr-form {
  max-width: 550px;
}
.cid-uHeqyXOD4Z .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uHeqyXOD4Z .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uHeqyXOD4Z .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uHeqyXOD4Z .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uHeqyXOD4Z .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uHeqyXOD4Z .mbr-form textarea {
  min-height: 100px;
}
.cid-uHeqyXOD4Z .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uHeqyXOD4Z .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uHeqyXOD4Z .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uHeqyXOD4Z .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uHeqyXOD4Z .mbr-section-title,
  .cid-uHeqyXOD4Z .content-title,
  .cid-uHeqyXOD4Z .mbr-section-btn {
    text-align: left;
  }
}
.cid-uHeqyYrph4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfgwhRGKr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfgwhRGKr nav.navbar {
  position: fixed;
}
.cid-uHfgwhRGKr .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-uHfgwhRGKr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfgwhRGKr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfgwhRGKr .dropdown-item:hover,
.cid-uHfgwhRGKr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfgwhRGKr .dropdown-item:hover span {
  color: white;
}
.cid-uHfgwhRGKr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfgwhRGKr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfgwhRGKr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfgwhRGKr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfgwhRGKr .nav-link {
  position: relative;
}
.cid-uHfgwhRGKr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfgwhRGKr .container {
    flex-wrap: wrap;
  }
}
.cid-uHfgwhRGKr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfgwhRGKr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfgwhRGKr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfgwhRGKr .dropdown-menu,
.cid-uHfgwhRGKr .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfgwhRGKr .nav-item:focus,
.cid-uHfgwhRGKr .nav-link:focus {
  outline: none;
}
.cid-uHfgwhRGKr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfgwhRGKr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfgwhRGKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfgwhRGKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfgwhRGKr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfgwhRGKr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfgwhRGKr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfgwhRGKr .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfgwhRGKr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfgwhRGKr .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfgwhRGKr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfgwhRGKr .navbar.collapsed {
  justify-content: center;
}
.cid-uHfgwhRGKr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfgwhRGKr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfgwhRGKr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfgwhRGKr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfgwhRGKr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfgwhRGKr .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-uHfgwhRGKr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfgwhRGKr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfgwhRGKr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfgwhRGKr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfgwhRGKr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfgwhRGKr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfgwhRGKr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfgwhRGKr .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-uHfgwhRGKr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfgwhRGKr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfgwhRGKr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfgwhRGKr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfgwhRGKr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfgwhRGKr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfgwhRGKr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfgwhRGKr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfgwhRGKr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfgwhRGKr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfgwhRGKr .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-uHfgwhRGKr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfgwhRGKr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfgwhRGKr .dropdown-item.active,
.cid-uHfgwhRGKr .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfgwhRGKr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfgwhRGKr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfgwhRGKr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfgwhRGKr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfgwhRGKr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfgwhRGKr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfgwhRGKr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfgwhRGKr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfgwhRGKr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfgwhRGKr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfgwhRGKr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfgwhRGKr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfgwhRGKr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfgwhRGKr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfgwhRGKr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfgwhRGKr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfgwhRGKr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfgwhRGKr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfgwhRGKr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfgwhRGKr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfgwhRGKr .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-uHfgwhRGKr .navbar {
    height: 70px;
  }
  .cid-uHfgwhRGKr .navbar.opened {
    height: auto;
  }
  .cid-uHfgwhRGKr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHfgwd3bft {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHfgwd3bft .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHfgwd3bft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHfgwfFrdY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHfgwfFrdY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHfgwfFrdY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHfgwfFrdY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHfgwfFrdY .row {
  flex-direction: row-reverse;
}
.cid-uHfgwfFrdY img {
  width: 100%;
}
.cid-uHfgwfZx84 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHfgwgjcLH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uHfgwgjcLH .row {
  justify-content: center;
}
.cid-uHfgwgjcLH .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHfgwgjcLH .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uHfgwgjcLH .card {
  padding: 0 15px;
}
.cid-uHfgwgjcLH .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uHfgwgjcLH .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uHfgwgjcLH .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uHfgwgjcLH .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uHfgwgjcLH .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uHfgwgjcLH .mbr-card-title {
  text-align: center;
}
.cid-uHfgwgjcLH .mbr-card-desc {
  text-align: center;
}
.cid-uHfgwgPDXO {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uHfgwgPDXO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHfgwgPDXO .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uHfgwgPDXO .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uHfgwgPDXO .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uHfgwgPDXO .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uHfgwgPDXO .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uHfgwgPDXO .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uHfgwgPDXO .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uHfgwgPDXO .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uHfgwgPDXO .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uHfgwgPDXO .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uHfgwgPDXO .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uHfgwgPDXO .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uHfgwgPDXO .list-block {
  position: relative;
}
.cid-uHfgwgPDXO .list-block h4,
.cid-uHfgwgPDXO .list-block p {
  padding-left: 4.5rem;
}
.cid-uHfgwgPDXO .card-img {
  display: block;
}
.cid-uHfgwgPDXO input,
.cid-uHfgwgPDXO textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uHfgwgPDXO input:focus,
.cid-uHfgwgPDXO textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uHfgwgPDXO .form-control,
.cid-uHfgwgPDXO .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHfgwgPDXO .form-control:hover,
.cid-uHfgwgPDXO .field-input:hover,
.cid-uHfgwgPDXO .form-control:focus,
.cid-uHfgwgPDXO .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uHfgwgPDXO input::-webkit-input-placeholder,
.cid-uHfgwgPDXO textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uHfgwgPDXO input:-moz-placeholder,
.cid-uHfgwgPDXO textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uHfgwgPDXO .jq-selectbox li,
.cid-uHfgwgPDXO .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHfgwgPDXO .jq-selectbox li:hover,
.cid-uHfgwgPDXO .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHfgwgPDXO .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHfgwgPDXO .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHfgwgPDXO .mbr-form {
  max-width: 550px;
}
.cid-uHfgwgPDXO .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uHfgwgPDXO .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uHfgwgPDXO .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uHfgwgPDXO .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uHfgwgPDXO .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uHfgwgPDXO .mbr-form textarea {
  min-height: 100px;
}
.cid-uHfgwgPDXO .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uHfgwgPDXO .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uHfgwgPDXO .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uHfgwgPDXO .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uHfgwgPDXO .mbr-section-title,
  .cid-uHfgwgPDXO .content-title,
  .cid-uHfgwgPDXO .mbr-section-btn {
    text-align: left;
  }
}
.cid-uHfgwhs9Oe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHfhbkoF2j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHfhbkoF2j nav.navbar {
  position: fixed;
}
.cid-uHfhbkoF2j .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-uHfhbkoF2j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHfhbkoF2j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHfhbkoF2j .dropdown-item:hover,
.cid-uHfhbkoF2j .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHfhbkoF2j .dropdown-item:hover span {
  color: white;
}
.cid-uHfhbkoF2j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHfhbkoF2j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHfhbkoF2j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHfhbkoF2j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHfhbkoF2j .nav-link {
  position: relative;
}
.cid-uHfhbkoF2j .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfhbkoF2j .container {
    flex-wrap: wrap;
  }
}
.cid-uHfhbkoF2j .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHfhbkoF2j .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHfhbkoF2j .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHfhbkoF2j .dropdown-menu,
.cid-uHfhbkoF2j .navbar.opened {
  background: #ffffff !important;
}
.cid-uHfhbkoF2j .nav-item:focus,
.cid-uHfhbkoF2j .nav-link:focus {
  outline: none;
}
.cid-uHfhbkoF2j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHfhbkoF2j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHfhbkoF2j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHfhbkoF2j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHfhbkoF2j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHfhbkoF2j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHfhbkoF2j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHfhbkoF2j .navbar.opened {
  transition: all 0.3s;
}
.cid-uHfhbkoF2j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHfhbkoF2j .navbar .navbar-logo img {
  width: auto;
}
.cid-uHfhbkoF2j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHfhbkoF2j .navbar.collapsed {
  justify-content: center;
}
.cid-uHfhbkoF2j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHfhbkoF2j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHfhbkoF2j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHfhbkoF2j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHfhbkoF2j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHfhbkoF2j .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-uHfhbkoF2j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHfhbkoF2j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHfhbkoF2j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHfhbkoF2j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHfhbkoF2j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHfhbkoF2j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHfhbkoF2j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHfhbkoF2j .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-uHfhbkoF2j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHfhbkoF2j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHfhbkoF2j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHfhbkoF2j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHfhbkoF2j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHfhbkoF2j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHfhbkoF2j .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHfhbkoF2j .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHfhbkoF2j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHfhbkoF2j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHfhbkoF2j .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-uHfhbkoF2j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHfhbkoF2j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHfhbkoF2j .dropdown-item.active,
.cid-uHfhbkoF2j .dropdown-item:active {
  background-color: transparent;
}
.cid-uHfhbkoF2j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHfhbkoF2j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHfhbkoF2j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHfhbkoF2j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHfhbkoF2j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHfhbkoF2j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHfhbkoF2j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHfhbkoF2j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHfhbkoF2j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHfhbkoF2j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHfhbkoF2j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHfhbkoF2j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfhbkoF2j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHfhbkoF2j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHfhbkoF2j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfhbkoF2j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHfhbkoF2j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHfhbkoF2j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHfhbkoF2j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHfhbkoF2j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHfhbkoF2j .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-uHfhbkoF2j .navbar {
    height: 70px;
  }
  .cid-uHfhbkoF2j .navbar.opened {
    height: auto;
  }
  .cid-uHfhbkoF2j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHfhbfV6mF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHfhbfV6mF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHfhbfV6mF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHfhbhQ9LS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHfhbhQ9LS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHfhbhQ9LS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHfhbhQ9LS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHfhbhQ9LS .row {
  flex-direction: row-reverse;
}
.cid-uHfhbhQ9LS img {
  width: 100%;
}
.cid-uHfhbiDIpb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHfhbiVxKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uHfhbiVxKY .row {
  justify-content: center;
}
.cid-uHfhbiVxKY .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHfhbiVxKY .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uHfhbiVxKY .card {
  padding: 0 15px;
}
.cid-uHfhbiVxKY .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uHfhbiVxKY .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uHfhbiVxKY .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uHfhbiVxKY .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uHfhbiVxKY .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uHfhbiVxKY .mbr-card-title {
  text-align: center;
}
.cid-uHfhbiVxKY .mbr-card-desc {
  text-align: center;
}
.cid-uHfhbjpJVK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uHfhbjpJVK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHfhbjpJVK .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uHfhbjpJVK .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uHfhbjpJVK .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uHfhbjpJVK .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uHfhbjpJVK .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uHfhbjpJVK .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uHfhbjpJVK .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uHfhbjpJVK .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uHfhbjpJVK .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uHfhbjpJVK .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uHfhbjpJVK .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uHfhbjpJVK .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uHfhbjpJVK .list-block {
  position: relative;
}
.cid-uHfhbjpJVK .list-block h4,
.cid-uHfhbjpJVK .list-block p {
  padding-left: 4.5rem;
}
.cid-uHfhbjpJVK .card-img {
  display: block;
}
.cid-uHfhbjpJVK input,
.cid-uHfhbjpJVK textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uHfhbjpJVK input:focus,
.cid-uHfhbjpJVK textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uHfhbjpJVK .form-control,
.cid-uHfhbjpJVK .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHfhbjpJVK .form-control:hover,
.cid-uHfhbjpJVK .field-input:hover,
.cid-uHfhbjpJVK .form-control:focus,
.cid-uHfhbjpJVK .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uHfhbjpJVK input::-webkit-input-placeholder,
.cid-uHfhbjpJVK textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uHfhbjpJVK input:-moz-placeholder,
.cid-uHfhbjpJVK textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uHfhbjpJVK .jq-selectbox li,
.cid-uHfhbjpJVK .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHfhbjpJVK .jq-selectbox li:hover,
.cid-uHfhbjpJVK .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHfhbjpJVK .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHfhbjpJVK .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHfhbjpJVK .mbr-form {
  max-width: 550px;
}
.cid-uHfhbjpJVK .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uHfhbjpJVK .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uHfhbjpJVK .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uHfhbjpJVK .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uHfhbjpJVK .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uHfhbjpJVK .mbr-form textarea {
  min-height: 100px;
}
.cid-uHfhbjpJVK .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uHfhbjpJVK .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uHfhbjpJVK .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uHfhbjpJVK .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uHfhbjpJVK .mbr-section-title,
  .cid-uHfhbjpJVK .content-title,
  .cid-uHfhbjpJVK .mbr-section-btn {
    text-align: left;
  }
}
.cid-uHfhbk0RbO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHYJa1Bt7z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHYJa1Bt7z nav.navbar {
  position: fixed;
}
.cid-uHYJa1Bt7z .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-uHYJa1Bt7z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHYJa1Bt7z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHYJa1Bt7z .dropdown-item:hover,
.cid-uHYJa1Bt7z .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHYJa1Bt7z .dropdown-item:hover span {
  color: white;
}
.cid-uHYJa1Bt7z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHYJa1Bt7z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHYJa1Bt7z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHYJa1Bt7z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHYJa1Bt7z .nav-link {
  position: relative;
}
.cid-uHYJa1Bt7z .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHYJa1Bt7z .container {
    flex-wrap: wrap;
  }
}
.cid-uHYJa1Bt7z .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHYJa1Bt7z .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHYJa1Bt7z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHYJa1Bt7z .dropdown-menu,
.cid-uHYJa1Bt7z .navbar.opened {
  background: #ffffff !important;
}
.cid-uHYJa1Bt7z .nav-item:focus,
.cid-uHYJa1Bt7z .nav-link:focus {
  outline: none;
}
.cid-uHYJa1Bt7z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHYJa1Bt7z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHYJa1Bt7z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHYJa1Bt7z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHYJa1Bt7z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHYJa1Bt7z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHYJa1Bt7z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHYJa1Bt7z .navbar.opened {
  transition: all 0.3s;
}
.cid-uHYJa1Bt7z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHYJa1Bt7z .navbar .navbar-logo img {
  width: auto;
}
.cid-uHYJa1Bt7z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHYJa1Bt7z .navbar.collapsed {
  justify-content: center;
}
.cid-uHYJa1Bt7z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHYJa1Bt7z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHYJa1Bt7z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHYJa1Bt7z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHYJa1Bt7z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHYJa1Bt7z .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-uHYJa1Bt7z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHYJa1Bt7z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHYJa1Bt7z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHYJa1Bt7z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHYJa1Bt7z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHYJa1Bt7z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHYJa1Bt7z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHYJa1Bt7z .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-uHYJa1Bt7z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHYJa1Bt7z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHYJa1Bt7z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHYJa1Bt7z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHYJa1Bt7z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHYJa1Bt7z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHYJa1Bt7z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHYJa1Bt7z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHYJa1Bt7z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHYJa1Bt7z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHYJa1Bt7z .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-uHYJa1Bt7z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHYJa1Bt7z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHYJa1Bt7z .dropdown-item.active,
.cid-uHYJa1Bt7z .dropdown-item:active {
  background-color: transparent;
}
.cid-uHYJa1Bt7z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHYJa1Bt7z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHYJa1Bt7z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHYJa1Bt7z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHYJa1Bt7z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHYJa1Bt7z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHYJa1Bt7z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHYJa1Bt7z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHYJa1Bt7z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHYJa1Bt7z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHYJa1Bt7z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHYJa1Bt7z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYJa1Bt7z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYJa1Bt7z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHYJa1Bt7z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYJa1Bt7z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHYJa1Bt7z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHYJa1Bt7z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYJa1Bt7z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHYJa1Bt7z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHYJa1Bt7z .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-uHYJa1Bt7z .navbar {
    height: 70px;
  }
  .cid-uHYJa1Bt7z .navbar.opened {
    height: auto;
  }
  .cid-uHYJa1Bt7z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHYJa2bJ3z {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHYJa2bJ3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHYJa2bJ3z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHYJa2Aw4E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHYJa2Aw4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHYJa2Aw4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHYJa2Aw4E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHYJa2Aw4E .row {
  flex-direction: row-reverse;
}
.cid-uHYJa2Aw4E img {
  width: 100%;
}
.cid-uHYJa303fD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHYJa3lClC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uHYJa3lClC .row {
  justify-content: center;
}
.cid-uHYJa3lClC .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHYJa3lClC .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uHYJa3lClC .card {
  padding: 0 15px;
}
.cid-uHYJa3lClC .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uHYJa3lClC .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uHYJa3lClC .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uHYJa3lClC .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uHYJa3lClC .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uHYJa3lClC .mbr-card-title {
  text-align: center;
}
.cid-uHYJa3lClC .mbr-card-desc {
  text-align: center;
}
.cid-uHYJa3Z5gN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uHYJa3Z5gN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHYJa3Z5gN .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uHYJa3Z5gN .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uHYJa3Z5gN .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uHYJa3Z5gN .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uHYJa3Z5gN .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uHYJa3Z5gN .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uHYJa3Z5gN .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uHYJa3Z5gN .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uHYJa3Z5gN .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uHYJa3Z5gN .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uHYJa3Z5gN .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uHYJa3Z5gN .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uHYJa3Z5gN .list-block {
  position: relative;
}
.cid-uHYJa3Z5gN .list-block h4,
.cid-uHYJa3Z5gN .list-block p {
  padding-left: 4.5rem;
}
.cid-uHYJa3Z5gN .card-img {
  display: block;
}
.cid-uHYJa3Z5gN input,
.cid-uHYJa3Z5gN textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uHYJa3Z5gN input:focus,
.cid-uHYJa3Z5gN textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uHYJa3Z5gN .form-control,
.cid-uHYJa3Z5gN .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHYJa3Z5gN .form-control:hover,
.cid-uHYJa3Z5gN .field-input:hover,
.cid-uHYJa3Z5gN .form-control:focus,
.cid-uHYJa3Z5gN .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uHYJa3Z5gN input::-webkit-input-placeholder,
.cid-uHYJa3Z5gN textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uHYJa3Z5gN input:-moz-placeholder,
.cid-uHYJa3Z5gN textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uHYJa3Z5gN .jq-selectbox li,
.cid-uHYJa3Z5gN .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHYJa3Z5gN .jq-selectbox li:hover,
.cid-uHYJa3Z5gN .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHYJa3Z5gN .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHYJa3Z5gN .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHYJa3Z5gN .mbr-form {
  max-width: 550px;
}
.cid-uHYJa3Z5gN .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uHYJa3Z5gN .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uHYJa3Z5gN .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uHYJa3Z5gN .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uHYJa3Z5gN .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uHYJa3Z5gN .mbr-form textarea {
  min-height: 100px;
}
.cid-uHYJa3Z5gN .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uHYJa3Z5gN .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uHYJa3Z5gN .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uHYJa3Z5gN .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uHYJa3Z5gN .mbr-section-title,
  .cid-uHYJa3Z5gN .content-title,
  .cid-uHYJa3Z5gN .mbr-section-btn {
    text-align: left;
  }
}
.cid-uHYJa4FosA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uHYXRJwwsv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHYXRJwwsv nav.navbar {
  position: fixed;
}
.cid-uHYXRJwwsv .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-uHYXRJwwsv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHYXRJwwsv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHYXRJwwsv .dropdown-item:hover,
.cid-uHYXRJwwsv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHYXRJwwsv .dropdown-item:hover span {
  color: white;
}
.cid-uHYXRJwwsv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHYXRJwwsv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHYXRJwwsv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHYXRJwwsv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHYXRJwwsv .nav-link {
  position: relative;
}
.cid-uHYXRJwwsv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHYXRJwwsv .container {
    flex-wrap: wrap;
  }
}
.cid-uHYXRJwwsv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHYXRJwwsv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uHYXRJwwsv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHYXRJwwsv .dropdown-menu,
.cid-uHYXRJwwsv .navbar.opened {
  background: #ffffff !important;
}
.cid-uHYXRJwwsv .nav-item:focus,
.cid-uHYXRJwwsv .nav-link:focus {
  outline: none;
}
.cid-uHYXRJwwsv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHYXRJwwsv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHYXRJwwsv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHYXRJwwsv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHYXRJwwsv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHYXRJwwsv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHYXRJwwsv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uHYXRJwwsv .navbar.opened {
  transition: all 0.3s;
}
.cid-uHYXRJwwsv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHYXRJwwsv .navbar .navbar-logo img {
  width: auto;
}
.cid-uHYXRJwwsv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHYXRJwwsv .navbar.collapsed {
  justify-content: center;
}
.cid-uHYXRJwwsv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHYXRJwwsv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHYXRJwwsv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uHYXRJwwsv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHYXRJwwsv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHYXRJwwsv .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-uHYXRJwwsv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHYXRJwwsv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHYXRJwwsv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHYXRJwwsv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHYXRJwwsv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHYXRJwwsv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHYXRJwwsv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHYXRJwwsv .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-uHYXRJwwsv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHYXRJwwsv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHYXRJwwsv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHYXRJwwsv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHYXRJwwsv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHYXRJwwsv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHYXRJwwsv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHYXRJwwsv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHYXRJwwsv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHYXRJwwsv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHYXRJwwsv .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-uHYXRJwwsv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHYXRJwwsv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHYXRJwwsv .dropdown-item.active,
.cid-uHYXRJwwsv .dropdown-item:active {
  background-color: transparent;
}
.cid-uHYXRJwwsv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHYXRJwwsv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHYXRJwwsv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHYXRJwwsv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uHYXRJwwsv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHYXRJwwsv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHYXRJwwsv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHYXRJwwsv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHYXRJwwsv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHYXRJwwsv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHYXRJwwsv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHYXRJwwsv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYXRJwwsv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYXRJwwsv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHYXRJwwsv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYXRJwwsv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHYXRJwwsv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHYXRJwwsv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYXRJwwsv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHYXRJwwsv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHYXRJwwsv .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-uHYXRJwwsv .navbar {
    height: 70px;
  }
  .cid-uHYXRJwwsv .navbar.opened {
    height: auto;
  }
  .cid-uHYXRJwwsv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHYXRK3PP2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHYXRK3PP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHYXRK3PP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHYYbwxzMf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHYYbwxzMf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHYYbwxzMf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHYYbwxzMf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHYYbwxzMf .row {
  flex-direction: row-reverse;
}
.cid-uHYYbwxzMf img {
  width: 100%;
}
.cid-uHYXRKPmYF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHYXRL8Dn0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uHYXRL8Dn0 .row {
  justify-content: center;
}
.cid-uHYXRL8Dn0 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHYXRL8Dn0 .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uHYXRL8Dn0 .card {
  padding: 0 15px;
}
.cid-uHYXRL8Dn0 .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uHYXRL8Dn0 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uHYXRL8Dn0 .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uHYXRL8Dn0 .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uHYXRL8Dn0 .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uHYXRL8Dn0 .mbr-card-title {
  text-align: center;
}
.cid-uHYXRL8Dn0 .mbr-card-desc {
  text-align: center;
}
.cid-uHYXRLGf3a {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uHYXRLGf3a .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHYXRLGf3a .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uHYXRLGf3a .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uHYXRLGf3a .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uHYXRLGf3a .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uHYXRLGf3a .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uHYXRLGf3a .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uHYXRLGf3a .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uHYXRLGf3a .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uHYXRLGf3a .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uHYXRLGf3a .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uHYXRLGf3a .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uHYXRLGf3a .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uHYXRLGf3a .list-block {
  position: relative;
}
.cid-uHYXRLGf3a .list-block h4,
.cid-uHYXRLGf3a .list-block p {
  padding-left: 4.5rem;
}
.cid-uHYXRLGf3a .card-img {
  display: block;
}
.cid-uHYXRLGf3a input,
.cid-uHYXRLGf3a textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uHYXRLGf3a input:focus,
.cid-uHYXRLGf3a textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uHYXRLGf3a .form-control,
.cid-uHYXRLGf3a .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHYXRLGf3a .form-control:hover,
.cid-uHYXRLGf3a .field-input:hover,
.cid-uHYXRLGf3a .form-control:focus,
.cid-uHYXRLGf3a .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uHYXRLGf3a input::-webkit-input-placeholder,
.cid-uHYXRLGf3a textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uHYXRLGf3a input:-moz-placeholder,
.cid-uHYXRLGf3a textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uHYXRLGf3a .jq-selectbox li,
.cid-uHYXRLGf3a .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHYXRLGf3a .jq-selectbox li:hover,
.cid-uHYXRLGf3a .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uHYXRLGf3a .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHYXRLGf3a .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uHYXRLGf3a .mbr-form {
  max-width: 550px;
}
.cid-uHYXRLGf3a .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uHYXRLGf3a .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uHYXRLGf3a .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uHYXRLGf3a .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uHYXRLGf3a .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uHYXRLGf3a .mbr-form textarea {
  min-height: 100px;
}
.cid-uHYXRLGf3a .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uHYXRLGf3a .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uHYXRLGf3a .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uHYXRLGf3a .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uHYXRLGf3a .mbr-section-title,
  .cid-uHYXRLGf3a .content-title,
  .cid-uHYXRLGf3a .mbr-section-btn {
    text-align: left;
  }
}
.cid-uHYXRMradD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uI3QJbE0sB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uI3QJbE0sB nav.navbar {
  position: fixed;
}
.cid-uI3QJbE0sB .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-uI3QJbE0sB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uI3QJbE0sB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uI3QJbE0sB .dropdown-item:hover,
.cid-uI3QJbE0sB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uI3QJbE0sB .dropdown-item:hover span {
  color: white;
}
.cid-uI3QJbE0sB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uI3QJbE0sB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uI3QJbE0sB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uI3QJbE0sB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uI3QJbE0sB .nav-link {
  position: relative;
}
.cid-uI3QJbE0sB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI3QJbE0sB .container {
    flex-wrap: wrap;
  }
}
.cid-uI3QJbE0sB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI3QJbE0sB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uI3QJbE0sB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uI3QJbE0sB .dropdown-menu,
.cid-uI3QJbE0sB .navbar.opened {
  background: #ffffff !important;
}
.cid-uI3QJbE0sB .nav-item:focus,
.cid-uI3QJbE0sB .nav-link:focus {
  outline: none;
}
.cid-uI3QJbE0sB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI3QJbE0sB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI3QJbE0sB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI3QJbE0sB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI3QJbE0sB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI3QJbE0sB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI3QJbE0sB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uI3QJbE0sB .navbar.opened {
  transition: all 0.3s;
}
.cid-uI3QJbE0sB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uI3QJbE0sB .navbar .navbar-logo img {
  width: auto;
}
.cid-uI3QJbE0sB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uI3QJbE0sB .navbar.collapsed {
  justify-content: center;
}
.cid-uI3QJbE0sB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI3QJbE0sB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uI3QJbE0sB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uI3QJbE0sB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI3QJbE0sB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI3QJbE0sB .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-uI3QJbE0sB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI3QJbE0sB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uI3QJbE0sB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uI3QJbE0sB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI3QJbE0sB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI3QJbE0sB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI3QJbE0sB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uI3QJbE0sB .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-uI3QJbE0sB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI3QJbE0sB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uI3QJbE0sB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uI3QJbE0sB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uI3QJbE0sB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI3QJbE0sB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uI3QJbE0sB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uI3QJbE0sB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI3QJbE0sB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI3QJbE0sB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI3QJbE0sB .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-uI3QJbE0sB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uI3QJbE0sB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI3QJbE0sB .dropdown-item.active,
.cid-uI3QJbE0sB .dropdown-item:active {
  background-color: transparent;
}
.cid-uI3QJbE0sB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uI3QJbE0sB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI3QJbE0sB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI3QJbE0sB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uI3QJbE0sB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI3QJbE0sB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI3QJbE0sB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uI3QJbE0sB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI3QJbE0sB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uI3QJbE0sB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uI3QJbE0sB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI3QJbE0sB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI3QJbE0sB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI3QJbE0sB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI3QJbE0sB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI3QJbE0sB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI3QJbE0sB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI3QJbE0sB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI3QJbE0sB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uI3QJbE0sB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uI3QJbE0sB .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-uI3QJbE0sB .navbar {
    height: 70px;
  }
  .cid-uI3QJbE0sB .navbar.opened {
    height: auto;
  }
  .cid-uI3QJbE0sB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI3QJc88GQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI3QJc88GQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3QJc88GQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3QJc88GQ .row {
  flex-direction: row-reverse;
}
.cid-uI3QJcyNfm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uI3ROojMKD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI3ROojMKD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3ROojMKD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uI3ROojMKD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uI3ROojMKD .row {
  flex-direction: row-reverse;
}
.cid-uI3ROojMKD img {
  width: 100%;
}
.cid-uI3QJdFtBE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uI3QJdFtBE .row {
  justify-content: center;
}
.cid-uI3QJdFtBE .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uI3QJdFtBE .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uI3QJdFtBE .card {
  padding: 0 15px;
}
.cid-uI3QJdFtBE .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uI3QJdFtBE .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uI3QJdFtBE .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uI3QJdFtBE .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uI3QJdFtBE .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uI3QJdFtBE .mbr-card-title {
  text-align: center;
}
.cid-uI3QJdFtBE .mbr-card-desc {
  text-align: center;
}
.cid-uI3QJejpb5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uI3QJejpb5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uI3QJejpb5 .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uI3QJejpb5 .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uI3QJejpb5 .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uI3QJejpb5 .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uI3QJejpb5 .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uI3QJejpb5 .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uI3QJejpb5 .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uI3QJejpb5 .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uI3QJejpb5 .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uI3QJejpb5 .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uI3QJejpb5 .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uI3QJejpb5 .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uI3QJejpb5 .list-block {
  position: relative;
}
.cid-uI3QJejpb5 .list-block h4,
.cid-uI3QJejpb5 .list-block p {
  padding-left: 4.5rem;
}
.cid-uI3QJejpb5 .card-img {
  display: block;
}
.cid-uI3QJejpb5 input,
.cid-uI3QJejpb5 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uI3QJejpb5 input:focus,
.cid-uI3QJejpb5 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uI3QJejpb5 .form-control,
.cid-uI3QJejpb5 .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uI3QJejpb5 .form-control:hover,
.cid-uI3QJejpb5 .field-input:hover,
.cid-uI3QJejpb5 .form-control:focus,
.cid-uI3QJejpb5 .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uI3QJejpb5 input::-webkit-input-placeholder,
.cid-uI3QJejpb5 textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uI3QJejpb5 input:-moz-placeholder,
.cid-uI3QJejpb5 textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uI3QJejpb5 .jq-selectbox li,
.cid-uI3QJejpb5 .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uI3QJejpb5 .jq-selectbox li:hover,
.cid-uI3QJejpb5 .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uI3QJejpb5 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uI3QJejpb5 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uI3QJejpb5 .mbr-form {
  max-width: 550px;
}
.cid-uI3QJejpb5 .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uI3QJejpb5 .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uI3QJejpb5 .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uI3QJejpb5 .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uI3QJejpb5 .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uI3QJejpb5 .mbr-form textarea {
  min-height: 100px;
}
.cid-uI3QJejpb5 .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uI3QJejpb5 .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uI3QJejpb5 .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uI3QJejpb5 .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uI3QJejpb5 .mbr-section-title,
  .cid-uI3QJejpb5 .content-title,
  .cid-uI3QJejpb5 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uI3QJf3dkc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uIgGSxyVtM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIgGSxyVtM nav.navbar {
  position: fixed;
}
.cid-uIgGSxyVtM .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-uIgGSxyVtM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIgGSxyVtM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIgGSxyVtM .dropdown-item:hover,
.cid-uIgGSxyVtM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIgGSxyVtM .dropdown-item:hover span {
  color: white;
}
.cid-uIgGSxyVtM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIgGSxyVtM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIgGSxyVtM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIgGSxyVtM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIgGSxyVtM .nav-link {
  position: relative;
}
.cid-uIgGSxyVtM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIgGSxyVtM .container {
    flex-wrap: wrap;
  }
}
.cid-uIgGSxyVtM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIgGSxyVtM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIgGSxyVtM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIgGSxyVtM .dropdown-menu,
.cid-uIgGSxyVtM .navbar.opened {
  background: #ffffff !important;
}
.cid-uIgGSxyVtM .nav-item:focus,
.cid-uIgGSxyVtM .nav-link:focus {
  outline: none;
}
.cid-uIgGSxyVtM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIgGSxyVtM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIgGSxyVtM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIgGSxyVtM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIgGSxyVtM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIgGSxyVtM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIgGSxyVtM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uIgGSxyVtM .navbar.opened {
  transition: all 0.3s;
}
.cid-uIgGSxyVtM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIgGSxyVtM .navbar .navbar-logo img {
  width: auto;
}
.cid-uIgGSxyVtM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIgGSxyVtM .navbar.collapsed {
  justify-content: center;
}
.cid-uIgGSxyVtM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIgGSxyVtM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIgGSxyVtM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uIgGSxyVtM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIgGSxyVtM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIgGSxyVtM .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-uIgGSxyVtM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIgGSxyVtM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIgGSxyVtM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIgGSxyVtM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIgGSxyVtM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIgGSxyVtM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIgGSxyVtM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIgGSxyVtM .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-uIgGSxyVtM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIgGSxyVtM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIgGSxyVtM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIgGSxyVtM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIgGSxyVtM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIgGSxyVtM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIgGSxyVtM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIgGSxyVtM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIgGSxyVtM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIgGSxyVtM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIgGSxyVtM .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-uIgGSxyVtM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIgGSxyVtM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIgGSxyVtM .dropdown-item.active,
.cid-uIgGSxyVtM .dropdown-item:active {
  background-color: transparent;
}
.cid-uIgGSxyVtM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIgGSxyVtM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIgGSxyVtM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIgGSxyVtM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uIgGSxyVtM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIgGSxyVtM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIgGSxyVtM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIgGSxyVtM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIgGSxyVtM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIgGSxyVtM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIgGSxyVtM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIgGSxyVtM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIgGSxyVtM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIgGSxyVtM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIgGSxyVtM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIgGSxyVtM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIgGSxyVtM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIgGSxyVtM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIgGSxyVtM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIgGSxyVtM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIgGSxyVtM .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-uIgGSxyVtM .navbar {
    height: 70px;
  }
  .cid-uIgGSxyVtM .navbar.opened {
    height: auto;
  }
  .cid-uIgGSxyVtM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIgHkYmG1q {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/donaciones.jpg");
}
.cid-uIgHkYmG1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgHkYmG1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgHkYmG1q .mbr-section-title {
  color: #ffffff;
}
.cid-uIgHkYmG1q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uIgHHdc6WX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uIgKZz3OOz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uIgLz11CXd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uIgLPFG5OM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uIgM1cMI0K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uIgMfygalt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uIgNDt9gow {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uIgO8bT3nK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uIgO8bT3nK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgO8bT3nK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgPsQNf3v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIgPsQNf3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgPsQNf3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uIgPsQNf3v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uIgPsQNf3v .row {
  flex-direction: row-reverse;
}
.cid-uIgPsQNf3v img {
  width: 100%;
}
.cid-uIgGSzEZ08 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uIgGSzEZ08 .row {
  justify-content: center;
}
.cid-uIgGSzEZ08 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uIgGSzEZ08 .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uIgGSzEZ08 .card {
  padding: 0 15px;
}
.cid-uIgGSzEZ08 .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uIgGSzEZ08 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uIgGSzEZ08 .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uIgGSzEZ08 .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uIgGSzEZ08 .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uIgGSzEZ08 .mbr-card-title {
  text-align: center;
}
.cid-uIgGSzEZ08 .mbr-card-desc {
  text-align: center;
}
.cid-uIgGSAcicp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uIgGSAcicp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIgGSAcicp .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uIgGSAcicp .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uIgGSAcicp .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uIgGSAcicp .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uIgGSAcicp .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uIgGSAcicp .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uIgGSAcicp .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uIgGSAcicp .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uIgGSAcicp .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uIgGSAcicp .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uIgGSAcicp .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uIgGSAcicp .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uIgGSAcicp .list-block {
  position: relative;
}
.cid-uIgGSAcicp .list-block h4,
.cid-uIgGSAcicp .list-block p {
  padding-left: 4.5rem;
}
.cid-uIgGSAcicp .card-img {
  display: block;
}
.cid-uIgGSAcicp input,
.cid-uIgGSAcicp textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uIgGSAcicp input:focus,
.cid-uIgGSAcicp textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uIgGSAcicp .form-control,
.cid-uIgGSAcicp .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIgGSAcicp .form-control:hover,
.cid-uIgGSAcicp .field-input:hover,
.cid-uIgGSAcicp .form-control:focus,
.cid-uIgGSAcicp .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIgGSAcicp input::-webkit-input-placeholder,
.cid-uIgGSAcicp textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uIgGSAcicp input:-moz-placeholder,
.cid-uIgGSAcicp textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uIgGSAcicp .jq-selectbox li,
.cid-uIgGSAcicp .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uIgGSAcicp .jq-selectbox li:hover,
.cid-uIgGSAcicp .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uIgGSAcicp .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uIgGSAcicp .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uIgGSAcicp .mbr-form {
  max-width: 550px;
}
.cid-uIgGSAcicp .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uIgGSAcicp .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uIgGSAcicp .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uIgGSAcicp .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uIgGSAcicp .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uIgGSAcicp .mbr-form textarea {
  min-height: 100px;
}
.cid-uIgGSAcicp .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uIgGSAcicp .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uIgGSAcicp .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uIgGSAcicp .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uIgGSAcicp .mbr-section-title,
  .cid-uIgGSAcicp .content-title,
  .cid-uIgGSAcicp .mbr-section-btn {
    text-align: left;
  }
}
.cid-uIgGSB2IVQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uPgwcP62AE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPgwcP62AE nav.navbar {
  position: fixed;
}
.cid-uPgwcP62AE .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-uPgwcP62AE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPgwcP62AE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPgwcP62AE .dropdown-item:hover,
.cid-uPgwcP62AE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uPgwcP62AE .dropdown-item:hover span {
  color: white;
}
.cid-uPgwcP62AE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPgwcP62AE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPgwcP62AE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPgwcP62AE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPgwcP62AE .nav-link {
  position: relative;
}
.cid-uPgwcP62AE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPgwcP62AE .container {
    flex-wrap: wrap;
  }
}
.cid-uPgwcP62AE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPgwcP62AE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uPgwcP62AE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPgwcP62AE .dropdown-menu,
.cid-uPgwcP62AE .navbar.opened {
  background: #ffffff !important;
}
.cid-uPgwcP62AE .nav-item:focus,
.cid-uPgwcP62AE .nav-link:focus {
  outline: none;
}
.cid-uPgwcP62AE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPgwcP62AE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPgwcP62AE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPgwcP62AE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPgwcP62AE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPgwcP62AE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPgwcP62AE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPgwcP62AE .navbar.opened {
  transition: all 0.3s;
}
.cid-uPgwcP62AE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPgwcP62AE .navbar .navbar-logo img {
  width: auto;
}
.cid-uPgwcP62AE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPgwcP62AE .navbar.collapsed {
  justify-content: center;
}
.cid-uPgwcP62AE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPgwcP62AE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPgwcP62AE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uPgwcP62AE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPgwcP62AE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPgwcP62AE .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-uPgwcP62AE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPgwcP62AE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPgwcP62AE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPgwcP62AE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPgwcP62AE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPgwcP62AE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPgwcP62AE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPgwcP62AE .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-uPgwcP62AE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPgwcP62AE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPgwcP62AE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPgwcP62AE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPgwcP62AE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPgwcP62AE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPgwcP62AE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uPgwcP62AE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPgwcP62AE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPgwcP62AE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPgwcP62AE .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-uPgwcP62AE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPgwcP62AE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPgwcP62AE .dropdown-item.active,
.cid-uPgwcP62AE .dropdown-item:active {
  background-color: transparent;
}
.cid-uPgwcP62AE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPgwcP62AE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPgwcP62AE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPgwcP62AE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPgwcP62AE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPgwcP62AE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPgwcP62AE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPgwcP62AE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPgwcP62AE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPgwcP62AE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uPgwcP62AE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPgwcP62AE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPgwcP62AE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPgwcP62AE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPgwcP62AE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPgwcP62AE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPgwcP62AE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPgwcP62AE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPgwcP62AE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPgwcP62AE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPgwcP62AE .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-uPgwcP62AE .navbar {
    height: 70px;
  }
  .cid-uPgwcP62AE .navbar.opened {
    height: auto;
  }
  .cid-uPgwcP62AE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPgwcPJhb6 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPgwcPJhb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgwcPJhb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPgwcPJhb6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPgwcPJhb6 .row {
  flex-direction: row-reverse;
}
.cid-uPgwcPJhb6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPgwcPJhb6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPUvckfBcg {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uPUvckfBcg .mbr-section-subtitle {
  text-align: center;
}
.cid-uPUvckfBcg .mbr-text {
  text-align: center;
}
.cid-uPUv8ilo8B {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPUv8ilo8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUv8ilo8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPUv8ilo8B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPUv8ilo8B .row {
  flex-direction: row-reverse;
}
.cid-uPUv8ilo8B img {
  width: 100%;
}
.cid-uPUA9VWB4u {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uPUA9VWB4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPUA9VWB4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPUA9VWB4u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPUA9VWB4u .row {
  flex-direction: row-reverse;
}
.cid-uPUA9VWB4u img {
  width: 100%;
}
.cid-uPUEtPwU5Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPUEtPwU5Q .mbr-section-subtitle {
  text-align: center;
}
.cid-uPUEtPwU5Q .mbr-text {
  text-align: center;
}
.cid-uPgwcQiWuR {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPgwcQiWuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgwcQiWuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPgwcQiWuR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPgwcQiWuR .row {
  flex-direction: row-reverse;
}
.cid-uPgwcQiWuR img {
  width: 100%;
}
.cid-uPgwcQIAQG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uPgwcQIAQG .row {
  justify-content: center;
}
.cid-uPgwcQIAQG .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uPgwcQIAQG .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uPgwcQIAQG .card {
  padding: 0 15px;
}
.cid-uPgwcQIAQG .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uPgwcQIAQG .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uPgwcQIAQG .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uPgwcQIAQG .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uPgwcQIAQG .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uPgwcQIAQG .mbr-card-title {
  text-align: center;
}
.cid-uPgwcQIAQG .mbr-card-desc {
  text-align: center;
}
.cid-uPgwcRk8NV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uPgwcRk8NV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uPgwcRk8NV .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uPgwcRk8NV .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uPgwcRk8NV .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uPgwcRk8NV .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uPgwcRk8NV .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uPgwcRk8NV .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uPgwcRk8NV .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uPgwcRk8NV .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uPgwcRk8NV .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uPgwcRk8NV .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uPgwcRk8NV .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uPgwcRk8NV .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uPgwcRk8NV .list-block {
  position: relative;
}
.cid-uPgwcRk8NV .list-block h4,
.cid-uPgwcRk8NV .list-block p {
  padding-left: 4.5rem;
}
.cid-uPgwcRk8NV .card-img {
  display: block;
}
.cid-uPgwcRk8NV input,
.cid-uPgwcRk8NV textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uPgwcRk8NV input:focus,
.cid-uPgwcRk8NV textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uPgwcRk8NV .form-control,
.cid-uPgwcRk8NV .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uPgwcRk8NV .form-control:hover,
.cid-uPgwcRk8NV .field-input:hover,
.cid-uPgwcRk8NV .form-control:focus,
.cid-uPgwcRk8NV .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uPgwcRk8NV input::-webkit-input-placeholder,
.cid-uPgwcRk8NV textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uPgwcRk8NV input:-moz-placeholder,
.cid-uPgwcRk8NV textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uPgwcRk8NV .jq-selectbox li,
.cid-uPgwcRk8NV .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uPgwcRk8NV .jq-selectbox li:hover,
.cid-uPgwcRk8NV .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uPgwcRk8NV .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uPgwcRk8NV .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uPgwcRk8NV .mbr-form {
  max-width: 550px;
}
.cid-uPgwcRk8NV .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uPgwcRk8NV .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uPgwcRk8NV .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uPgwcRk8NV .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uPgwcRk8NV .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uPgwcRk8NV .mbr-form textarea {
  min-height: 100px;
}
.cid-uPgwcRk8NV .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uPgwcRk8NV .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uPgwcRk8NV .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPgwcRk8NV .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uPgwcRk8NV .mbr-section-title,
  .cid-uPgwcRk8NV .content-title,
  .cid-uPgwcRk8NV .mbr-section-btn {
    text-align: left;
  }
}
.cid-uPgwcS5sTI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uPgwcSyiHj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPgwzPgl5G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPgwzPgl5G nav.navbar {
  position: fixed;
}
.cid-uPgwzPgl5G .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-uPgwzPgl5G .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPgwzPgl5G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPgwzPgl5G .dropdown-item:hover,
.cid-uPgwzPgl5G .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uPgwzPgl5G .dropdown-item:hover span {
  color: white;
}
.cid-uPgwzPgl5G .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPgwzPgl5G .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPgwzPgl5G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPgwzPgl5G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPgwzPgl5G .nav-link {
  position: relative;
}
.cid-uPgwzPgl5G .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPgwzPgl5G .container {
    flex-wrap: wrap;
  }
}
.cid-uPgwzPgl5G .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPgwzPgl5G .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uPgwzPgl5G .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPgwzPgl5G .dropdown-menu,
.cid-uPgwzPgl5G .navbar.opened {
  background: #ffffff !important;
}
.cid-uPgwzPgl5G .nav-item:focus,
.cid-uPgwzPgl5G .nav-link:focus {
  outline: none;
}
.cid-uPgwzPgl5G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPgwzPgl5G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPgwzPgl5G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPgwzPgl5G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPgwzPgl5G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPgwzPgl5G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPgwzPgl5G .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPgwzPgl5G .navbar.opened {
  transition: all 0.3s;
}
.cid-uPgwzPgl5G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPgwzPgl5G .navbar .navbar-logo img {
  width: auto;
}
.cid-uPgwzPgl5G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPgwzPgl5G .navbar.collapsed {
  justify-content: center;
}
.cid-uPgwzPgl5G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPgwzPgl5G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPgwzPgl5G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7rem);
  }
}
.cid-uPgwzPgl5G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPgwzPgl5G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPgwzPgl5G .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-uPgwzPgl5G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPgwzPgl5G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPgwzPgl5G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPgwzPgl5G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPgwzPgl5G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPgwzPgl5G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPgwzPgl5G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPgwzPgl5G .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-uPgwzPgl5G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPgwzPgl5G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPgwzPgl5G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPgwzPgl5G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPgwzPgl5G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPgwzPgl5G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPgwzPgl5G .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uPgwzPgl5G .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPgwzPgl5G .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPgwzPgl5G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPgwzPgl5G .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-uPgwzPgl5G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPgwzPgl5G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPgwzPgl5G .dropdown-item.active,
.cid-uPgwzPgl5G .dropdown-item:active {
  background-color: transparent;
}
.cid-uPgwzPgl5G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPgwzPgl5G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPgwzPgl5G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPgwzPgl5G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPgwzPgl5G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPgwzPgl5G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPgwzPgl5G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPgwzPgl5G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPgwzPgl5G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPgwzPgl5G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uPgwzPgl5G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPgwzPgl5G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPgwzPgl5G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPgwzPgl5G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPgwzPgl5G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPgwzPgl5G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPgwzPgl5G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPgwzPgl5G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPgwzPgl5G .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPgwzPgl5G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPgwzPgl5G .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-uPgwzPgl5G .navbar {
    height: 70px;
  }
  .cid-uPgwzPgl5G .navbar.opened {
    height: auto;
  }
  .cid-uPgwzPgl5G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPgwzQXQHg {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPgwzRpmjH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPgwzRSA5n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPgwzSj1KN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPgwzSMnsz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPgwzTfErJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPgwzTKfF7 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPgwzTKfF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgwzTKfF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPgwzUfZbU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPgwzUfZbU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgwzUfZbU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPgwzUfZbU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPgwzUfZbU .row {
  flex-direction: row-reverse;
}
.cid-uPgwzUfZbU img {
  width: 100%;
}
.cid-uPgwzUNqZQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uPgwzUNqZQ .row {
  justify-content: center;
}
.cid-uPgwzUNqZQ .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uPgwzUNqZQ .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-uPgwzUNqZQ .card {
  padding: 0 15px;
}
.cid-uPgwzUNqZQ .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-uPgwzUNqZQ .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-uPgwzUNqZQ .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-uPgwzUNqZQ .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-uPgwzUNqZQ .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-uPgwzUNqZQ .mbr-card-title {
  text-align: center;
}
.cid-uPgwzUNqZQ .mbr-card-desc {
  text-align: center;
}
.cid-uPgwzVzsbv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uPgwzVzsbv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uPgwzVzsbv .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-uPgwzVzsbv .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-uPgwzVzsbv .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-uPgwzVzsbv .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-uPgwzVzsbv .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-uPgwzVzsbv .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-uPgwzVzsbv .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-uPgwzVzsbv .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-uPgwzVzsbv .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-uPgwzVzsbv .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-uPgwzVzsbv .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-uPgwzVzsbv .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-uPgwzVzsbv .list-block {
  position: relative;
}
.cid-uPgwzVzsbv .list-block h4,
.cid-uPgwzVzsbv .list-block p {
  padding-left: 4.5rem;
}
.cid-uPgwzVzsbv .card-img {
  display: block;
}
.cid-uPgwzVzsbv input,
.cid-uPgwzVzsbv textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-uPgwzVzsbv input:focus,
.cid-uPgwzVzsbv textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-uPgwzVzsbv .form-control,
.cid-uPgwzVzsbv .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uPgwzVzsbv .form-control:hover,
.cid-uPgwzVzsbv .field-input:hover,
.cid-uPgwzVzsbv .form-control:focus,
.cid-uPgwzVzsbv .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uPgwzVzsbv input::-webkit-input-placeholder,
.cid-uPgwzVzsbv textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-uPgwzVzsbv input:-moz-placeholder,
.cid-uPgwzVzsbv textarea:-moz-placeholder {
  color: #28303f;
}
.cid-uPgwzVzsbv .jq-selectbox li,
.cid-uPgwzVzsbv .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uPgwzVzsbv .jq-selectbox li:hover,
.cid-uPgwzVzsbv .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-uPgwzVzsbv .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uPgwzVzsbv .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-uPgwzVzsbv .mbr-form {
  max-width: 550px;
}
.cid-uPgwzVzsbv .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uPgwzVzsbv .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uPgwzVzsbv .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uPgwzVzsbv .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uPgwzVzsbv .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-uPgwzVzsbv .mbr-form textarea {
  min-height: 100px;
}
.cid-uPgwzVzsbv .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #6592e6;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-uPgwzVzsbv .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-uPgwzVzsbv .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPgwzVzsbv .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-uPgwzVzsbv .mbr-section-title,
  .cid-uPgwzVzsbv .content-title,
  .cid-uPgwzVzsbv .mbr-section-btn {
    text-align: left;
  }
}
.cid-uPgwzWmibx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
