.btn {
  border-width: 2px;
}
body {
  font-family: 'Manrope', sans-serif;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -1.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 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: #161616 !important;
}
.bg-success {
  background-color: #3acc3a !important;
}
.bg-info {
  background-color: #ffc159 !important;
}
.bg-warning {
  background-color: #ff7448 !important;
}
.bg-danger {
  background-color: #bb350a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #161616 !important;
  border-color: #161616 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2705fc !important;
  border-color: #2705fc !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: #1902a8 !important;
  border-color: #1902a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1902a8 !important;
  border-color: #1902a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffc159 !important;
  border-color: #ffc159 !important;
  color: #593800 !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: #ffa102 !important;
  border-color: #ffa102 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #593800 !important;
  background-color: #ffa102 !important;
  border-color: #ffa102 !important;
}
.btn-success,
.btn-success:active {
  background-color: #3acc3a !important;
  border-color: #3acc3a !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: #248b24 !important;
  border-color: #248b24 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #248b24 !important;
  border-color: #248b24 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff7448 !important;
  border-color: #ff7448 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #f03a00 !important;
  border-color: #f03a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f03a00 !important;
  border-color: #f03a00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bb350a !important;
  border-color: #bb350a !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: #691e06 !important;
  border-color: #691e06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #691e06 !important;
  border-color: #691e06 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !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: #161616;
  color: #161616;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #2705fc;
  color: #2705fc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1902a8 !important;
  background-color: transparent!important;
  border-color: #1902a8 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2705fc !important;
  border-color: #2705fc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffc159;
  color: #ffc159;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffa102 !important;
  background-color: transparent!important;
  border-color: #ffa102 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #593800 !important;
  background-color: #ffc159 !important;
  border-color: #ffc159 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #3acc3a;
  color: #3acc3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #248b24 !important;
  background-color: transparent!important;
  border-color: #248b24 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3acc3a !important;
  border-color: #3acc3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff7448;
  color: #ff7448;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f03a00 !important;
  background-color: transparent!important;
  border-color: #f03a00 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7448 !important;
  border-color: #ff7448 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #bb350a;
  color: #bb350a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #691e06 !important;
  background-color: transparent!important;
  border-color: #691e06 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bb350a !important;
  border-color: #bb350a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #161616 !important;
}
.text-secondary {
  color: #2705fc !important;
}
.text-success {
  color: #3acc3a !important;
}
.text-info {
  color: #ffc159 !important;
}
.text-warning {
  color: #ff7448 !important;
}
.text-danger {
  color: #bb350a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #161616 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #170299 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #217f21 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f29800 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #e13600 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #5a1a05 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !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: #161616;
}
.nav-tabs .nav-link:not(.active) {
  color: #161616;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffc159;
}
.alert-warning {
  background-color: #ff7448;
}
.alert-danger {
  background-color: #bb350a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #161616;
  border-color: #161616;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #161616;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9c9c9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dcf6dc;
}
.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: #f6774f;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.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: #161616 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #161616;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #161616;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #161616;
}
.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: #161616;
  border-bottom-color: #161616;
}
.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: #161616 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2705fc !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='%23161616' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1392px;
  width: 94%;
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 120px;
  border-radius: 8px;
  padding: 16px 32px;
  line-height: 1.25;
  font-weight: 700 !important;
  box-shadow: none !important;
}
.mbr-section-btn .btn:hover {
  -webkit-transform: translate(0, -2px) !important;
  -ms-transform: translate(0, -2px) !important;
  transform: translate(0, -2px) !important;
}
.mbr-section-btn .btn-black-outline {
  background-color: #ffffff !important;
  border: 2px solid #161616;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn .btn-black-outline:active {
  background-color: #c2c0bc !important;
  border: 2px solid #161616 !important;
}
.mbr-section-btn .btn-white-outline {
  background-color: transparent !important;
  border: 2px solid #ffffff;
  color: #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn .btn-white-outline:active {
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-white {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn .btn-white:active {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
  }
}
b {
  font-weight: 700 !important;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-t5xHHzZ0j3 {
  background-image: url("../../../assets/images/laptop-g361bae5f6-1280.webp");
}
.cid-t5xHHzZ0j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5xHHzZ0j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5xHHzZ0j3 .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-t5xHHzZ0j3 .col-text {
    padding-right: 28px;
  }
}
.cid-t5xHHzZ0j3 .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-t5xHHzZ0j3 .col-img {
    padding-left: 28px;
  }
}
.cid-t5xHHzZ0j3 .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-t5xHHzZ0j3 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-t5xHHzZ0j3 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t5xHHzZ0j3 .mbr-section-btn {
    width: 100%;
  }
}
.cid-t5xHHzZ0j3 .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-t5xHHzZ0j3 .image-wrapper {
    height: auto;
  }
}
.cid-t5xHHzZ0j3 .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-t5xHHzZ0j3 .card-title,
.cid-t5xHHzZ0j3 .mbr-section-btn {
  color: #000000;
}
.cid-t5xHHzZ0j3 .mbr-text,
.cid-t5xHHzZ0j3 .link-wrap {
  color: #000000;
}
.cid-t5Bvo2RzY7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d8d5d1;
  position: relative;
  overflow: hidden;
}
.cid-t5Bvo2RzY7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5Bvo2RzY7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5Bvo2RzY7 .row {
  justify-content: center;
}
.cid-t5Bvo2RzY7 .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-t5Bvo2RzY7 .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-t5Bvo2RzY7 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-t5Bvo2RzY7 .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-t5Bvo2RzY7 .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-t5Bvo2RzY7 .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-t5Bvo2RzY7 .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-t5Bvo2RzY7 .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-t5Bvo2RzY7 .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-t5Bvo2RzY7 .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t5Bvo2RzY7 .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t5Bvo2RzY7 .card-title,
.cid-t5Bvo2RzY7 .iconfont-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-t5BwsDz7C7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-t5BwsDz7C7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5BwsDz7C7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5BwsDz7C7 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t5BwsDz7C7 .col-text {
    padding-left: 28px;
  }
}
@media (min-width: 992px) {
  .cid-t5BwsDz7C7 .col-img {
    padding-right: 28px;
  }
}
.cid-t5BwsDz7C7 .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5BwsDz7C7 .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-t5BwsDz7C7 .mbr-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-t5BwsDz7C7 .mbr-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cid-t5BwsDz7C7 .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.cid-t5BwsDz7C7 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-t5BwsDz7C7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t5BwsDz7C7 .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 420px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #16c016;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-t5BwsDz7C7 .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .cid-t5BwsDz7C7 .image-wrapper {
    height: 270px;
  }
}
@media (max-width: 991px) {
  .cid-t5BwsDz7C7 .image-wrapper {
    margin-top: 56px;
  }
}
.cid-t5BwsDz7C7 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t5BwsDz7C7 .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t5BxlAFedR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg2-1048x493.webp");
  position: relative;
  overflow: hidden;
}
.cid-t5BxlAFedR .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5BxlAFedR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5BxlAFedR .col-text {
    padding-right: 28px;
  }
}
@media (min-width: 992px) {
  .cid-t5BxlAFedR .col-img {
    padding-left: 28px;
  }
}
.cid-t5BxlAFedR .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-t5BxlAFedR .mbr-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-t5BxlAFedR .mbr-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.cid-t5BxlAFedR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t5BxlAFedR .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #161616;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-t5BxlAFedR .image-wrapper {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-t5BxlAFedR .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .image-wrapper {
    margin-top: 56px;
  }
}
.cid-t5BxlAFedR .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t5BxlAFedR .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-utHZvs1QmA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e3c39a;
}
.cid-utHZvs1QmA .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-utHZvs1QmA .mbr-section-head {
  margin-bottom: 5rem;
}
.cid-utHZvs1QmA .mbr-section-title {
  color: #161616;
}
.cid-utHZvs1QmA .mbr-section-subtitle {
  color: #161616;
}
.cid-utHZvs1QmA .item:focus,
.cid-utHZvs1QmA span:focus {
  outline: none;
}
.cid-utHZvs1QmA .col-img {
  display: grid;
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
  padding: 0;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .cid-utHZvs1QmA .col-img {
    grid-column-gap: 24px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-utHZvs1QmA .col-img {
    justify-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .cid-utHZvs1QmA .col-img {
    grid-column-gap: 24px;
    grid-row-gap: 32px;
  }
}
.cid-utHZvs1QmA .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-utHZvs1QmA .card {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 40px;
}
.cid-utHZvs1QmA .card img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.cid-ut4hXhunWj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #e3c39a;
}
.cid-ut4hXhunWj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 260px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .cid-ut4hXhunWj .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-ut4hXhunWj .embla__slide .slide-content {
  width: 100%;
}
.cid-ut4hXhunWj .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 16px;
}
.cid-ut4hXhunWj .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ut4hXhunWj .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-ut4hXhunWj .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-ut4hXhunWj .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
  opacity: .7;
}
.cid-ut4hXhunWj .embla__button--next,
.cid-ut4hXhunWj .embla__button--prev {
  display: flex;
}
.cid-ut4hXhunWj .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-ut4hXhunWj .embla__button:hover {
  opacity: .7 !important;
}
.cid-ut4hXhunWj .embla__button.embla__button--prev {
  right: 48px;
}
.cid-ut4hXhunWj .embla__button.embla__button--next {
  right: 0;
}
.cid-ut4hXhunWj .embla {
  position: relative;
  width: 100%;
}
.cid-ut4hXhunWj .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-ut4hXhunWj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ut4hXhunWj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ut4hXhunWj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ut4hXhunWj .item-menu-overlay {
  opacity: 0 !important;
}
.cid-ut4hXhunWj .item-desc {
  color: #ffffff;
}
.cid-utIceEXa0C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3.webp");
}
.cid-utIceEXa0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-utIceEXa0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utIceEXa0C .mbr-section-head {
  margin-bottom: 32px;
}
.cid-utIceEXa0C .mbr-section-title {
  color: #24262b;
}
.cid-utIceEXa0C .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-utIceEXa0C .cards-row {
  row-gap: 32px;
}
.cid-utIceEXa0C .card {
  border-radius: 0;
}
.cid-utIceEXa0C .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-utIceEXa0C .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-utIceEXa0C .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-utIceEXa0C .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-utIceEXa0C .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #b79b6c;
}
.cid-utIceEXa0C .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-utIceEXa0C .card-subtitle {
  color: #24262b;
}
.cid-utIceEXa0C .card-bottom-wrap {
  margin-top: 24px;
}
.cid-utIceEXa0C .card-name {
  color: #24262b;
}
.cid-utIceEXa0C .card-text {
  color: #24262b;
}
.cid-utIhALjxFD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-utIhALjxFD .mbr-fallback-image.disabled {
  display: none;
}
.cid-utIhALjxFD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utIhALjxFD .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-utIhALjxFD .container-fluid {
    padding: 0 20px;
  }
}
.cid-utIhALjxFD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-utIhALjxFD .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-utIhALjxFD .title-wrapper {
    margin-top: 45px;
  }
}
.cid-utIhALjxFD .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-utIhALjxFD .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-utIhALjxFD .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-utIhALjxFD .title-wrapper .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-utIhALjxFD .title-wrapper .mbr-text {
  line-height: inherit;
  margin-bottom: 0;
}
.cid-utIhALjxFD .title-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
  .cid-utIhALjxFD .title-wrapper .list {
    margin-top: 20px;
  }
}
.cid-utIhALjxFD .title-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-utIhALjxFD .title-wrapper .list .item-wrap {
    margin-top: 10px;
  }
}
.cid-utIhALjxFD .title-wrapper .list .item-wrap .mbr-iconfont {
  margin-right: 12px;
  color: #c8d814;
}
@media (min-width: 992px) {
  .cid-utIhALjxFD .mbr-form {
    margin-top: 32px;
  }
}
.cid-utIhALjxFD .dragArea.row .form-group {
  margin-bottom: 40px !important;
}
@media (max-width: 992px) {
  .cid-utIhALjxFD .dragArea.row .form-group {
    margin-top: 20px;
  }
}
.cid-utIhALjxFD .dragArea.row .form-group .form-control {
  border: none !important;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #6a6e71 !important;
  padding: 14px 0;
}
.cid-utIhALjxFD .dragArea.row .form-group .form-control::placeholder {
  color: #6a6e71;
}
.cid-utIhALjxFD .dragArea.row .form-group .form-control:hover {
  border-color: #6a6e71 !important;
}
.cid-utIhALjxFD .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.cid-utIhALjxFD .dragArea.row .form-group .form-check .form-check-input {
  background: transparent;
  border: 1px solid #2705fc;
}
.cid-utIhALjxFD .dragArea.row .mbr-section-btn {
  margin-top: 20px;
}
.cid-utIhALjxFD .dragArea.row .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-utIhALjxFD .dragArea.row .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 0;
  margin-right: 10px;
}
.cid-utIhALjxFD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-utIhALjxFD .mbr-section-title {
  color: #ffffff;
}
.cid-utIhALjxFD .mbr-text {
  color: #ffffff;
}
.cid-utIhALjxFD .list {
  color: #ffd389;
}
.cid-utIhALjxFD label {
  color: #000000;
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-utIH5ba3UZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d8d5d1;
  position: relative;
  overflow: hidden;
}
.cid-utIH5ba3UZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utIH5ba3UZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-utIH5ba3UZ .col-text {
    padding-right: 28px;
  }
}
@media (min-width: 992px) {
  .cid-utIH5ba3UZ .col-img {
    padding-left: 28px;
  }
}
.cid-utIH5ba3UZ .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utIH5ba3UZ .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-utIH5ba3UZ .mbr-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-utIH5ba3UZ .mbr-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cid-utIH5ba3UZ .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.cid-utIH5ba3UZ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-utIH5ba3UZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-utIH5ba3UZ .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #161616;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-utIH5ba3UZ .image-wrapper {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-utIH5ba3UZ .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .cid-utIH5ba3UZ .image-wrapper {
    margin-top: 56px;
  }
}
.cid-utIH5ba3UZ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-utIH5ba3UZ .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-utJnhCYStJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fff1e2;
}
.cid-utJnhCYStJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJnhCYStJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJnhCYStJ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #efc598;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-utJnhCYStJ .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utJnhCYStJ .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-utJnhCYStJ .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-utJnhCYStJ .image-wrapper img {
    height: 350px;
  }
}
.cid-utJnhCYStJ .mbr-section-title {
  color: #404349;
}
.cid-utJnhCYStJ .mbr-desc {
  color: #b19a7c;
}
.cid-utJnhCYStJ .mbr-text {
  color: #404349;
}
.cid-utJnhCYStJ .mbr-desc,
.cid-utJnhCYStJ .desc-wrapper {
  color: #24262b;
}
.cid-uvMFlG7lpO {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fff1e2;
}
.cid-uvMFlG7lpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMFlG7lpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMFlG7lpO .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #efc598;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uvMFlG7lpO .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvMFlG7lpO .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uvMFlG7lpO .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uvMFlG7lpO .image-wrapper img {
    height: 350px;
  }
}
.cid-uvMFlG7lpO .mbr-section-title {
  color: #404349;
}
.cid-uvMFlG7lpO .mbr-desc {
  color: #b19a7c;
}
.cid-uvMFlG7lpO .mbr-text {
  color: #404349;
}
.cid-uvMFlG7lpO .mbr-desc,
.cid-uvMFlG7lpO .desc-wrapper {
  color: #24262b;
}
.cid-uvMG5gMfP1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fff1e2;
}
.cid-uvMG5gMfP1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMG5gMfP1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMG5gMfP1 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #efc598;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uvMG5gMfP1 .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvMG5gMfP1 .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uvMG5gMfP1 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uvMG5gMfP1 .image-wrapper img {
    height: 350px;
  }
}
.cid-uvMG5gMfP1 .mbr-section-title {
  color: #404349;
}
.cid-uvMG5gMfP1 .mbr-desc {
  color: #b19a7c;
}
.cid-uvMG5gMfP1 .mbr-text {
  color: #404349;
}
.cid-uvMG5gMfP1 .mbr-desc,
.cid-uvMG5gMfP1 .desc-wrapper {
  color: #24262b;
}
.cid-uvMG697Iag {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fff1e2;
}
.cid-uvMG697Iag .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMG697Iag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMG697Iag .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #efc598;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uvMG697Iag .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvMG697Iag .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uvMG697Iag .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uvMG697Iag .image-wrapper img {
    height: 350px;
  }
}
.cid-uvMG697Iag .mbr-section-title {
  color: #404349;
}
.cid-uvMG697Iag .mbr-desc {
  color: #b19a7c;
}
.cid-uvMG697Iag .mbr-text {
  color: #404349;
}
.cid-uvMG697Iag .mbr-desc,
.cid-uvMG697Iag .desc-wrapper {
  color: #24262b;
}
.cid-uvMLRXkH1r {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uvMLRXkH1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMLRXkH1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMLRXkH1r .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #efc598;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uvMLRXkH1r .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvMLRXkH1r .content-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uvMLRXkH1r .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uvMLRXkH1r .image-wrapper img {
    height: 350px;
  }
}
.cid-uvMLRXkH1r .mbr-section-title {
  color: #404349;
}
.cid-uvMLRXkH1r .mbr-desc {
  color: #b19a7c;
}
.cid-uvMLRXkH1r .mbr-text {
  color: #404349;
}
.cid-uvMLRXkH1r .mbr-desc,
.cid-uvMLRXkH1r .desc-wrapper {
  color: #24262b;
}
.cid-uvMMM5SZAg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d8d5d1;
  position: relative;
  overflow: hidden;
}
.cid-uvMMM5SZAg .row {
  justify-content: center;
}
.cid-uvMMM5SZAg .title-container {
  max-width: 720px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.cid-uvMMM5SZAg .mbr-section-title {
  color: #161616;
}
.cid-uvMMM5SZAg .mbr-section-subtitle {
  color: #161616;
  margin-top: 16px;
}
.cid-uvMMM5SZAg .mbr-section-btn {
  margin-top: 30px;
}
.cid-uvMMM5SZAg .circle-blur {
  position: absolute;
  bottom: -15%;
  right: 0;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uwy0MWVH9K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uwy0MWVH9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwy0MWVH9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwy0MWVH9K .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uwy0MWVH9K .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uwy0MWVH9K .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-uwy0MWVH9K .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uwy0MWVH9K .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwy0MWVH9K .items-wrapper {
  justify-content: center;
  margin: 0 -8px;
}
.cid-uwy0MWVH9K .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.cid-uwy0MWVH9K .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uwy0MWVH9K .item .item-wrapper {
    padding: 20px 16px;
  }
}
.cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap {
    display: block;
    margin-bottom: 24px;
  }
}
.cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap .item-title {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uwy0MWVH9K .item .item-wrapper .card-box .title-wrap .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #272b2e, #6d7881);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwy0MWVH9K .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uwy0MWVH9K .item .card_1 {
  background: linear-gradient(315deg, #a672ff, #e6d8ff);
}
.cid-uwy0MWVH9K .item .card_2 {
  background: linear-gradient(315deg, #7dabab, #bbd3d3);
}
.cid-uwy0MWVH9K .item .card_3 {
  background: linear-gradient(315deg, #f96e47, #fcbcaa);
}
.cid-uwy0MWVH9K .btn-wrapper {
  margin-top: -6%;
}
.cid-uwy0MWVH9K .mbr-desc {
  color: #272b2e;
  text-align: center;
}
.cid-uwy0MWVH9K .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uwy0MWVH9K .item-title {
  color: #ffffff;
}
.cid-uwy0MWVH9K .item-text {
  color: #ffffff;
}
.cid-uwxVtrQPva {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwxVtrQPva .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwxVtrQPva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwxVtrQPva .container {
    padding: 0 30px;
  }
}
.cid-uwxVtrQPva .items .item {
  margin-bottom: 60px;
}
.cid-uwxVtrQPva .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uwxVtrQPva .items .item {
    margin-bottom: 30px;
  }
}
.cid-uwxVtrQPva .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-uwxVtrQPva .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uwxVtrQPva .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-uwxVtrQPva .dragArea.row {
  margin: 0;
}
.cid-uwxVtrQPva .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-uwxVtrQPva .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwxVtrQPva .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-uwxVtrQPva .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-uwxVtrQPva .dragArea.row .form-group .form-control:hover,
.cid-uwxVtrQPva .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-uwxVtrQPva .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-uwxVtrQPva .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-uwxVtrQPva .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uwxVtrQPva .mbr-section-title {
  color: #000000;
}
.cid-uwxVtrQPva .card-title {
  color: #000000;
}
.cid-uwxVtrQPva .list {
  color: #000000;
}
.cid-uwxVtrQPva .mbr-text {
  color: #000000;
}
.cid-uwxVtrQPva label {
  color: #000000;
}
.cid-uwy1mkPeRe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1211.webp");
}
.cid-uwy1mkPeRe .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uwy1mkPeRe h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-uwy1mkPeRe h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwy1mkPeRe h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwy1mkPeRe .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #767676;
  margin: 15px 0.5rem;
  display: block;
}
.cid-uwy1mkPeRe .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-uwy1mkPeRe .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-uwy1mkPeRe .mbr-iconfont-social:hover:before {
  background: #767676;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-uwy1mkPeRe .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uwy1mkPeRe .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-uwy1mkPeRe .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-uwy1mkPeRe .mbr-section-title,
.cid-uwy1mkPeRe .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uwy1mkPeRe h2:before,
  .cid-uwy1mkPeRe h2:after {
    display: none;
  }
}
.cid-uwy1mkPeRe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwy1mkPeRe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uwyhzEImO6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-uwyhzEImO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyhzEImO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwyhzEImO6 .container {
    padding: 0 15px;
  }
}
.cid-uwyhzEImO6 .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uwyhzEImO6 .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uwyhzEImO6 .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uwyhzEImO6 .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uwyhzEImO6 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwyhzEImO6 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uwyhzEImO6 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyhzEImO6 .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uwyhzEImO6 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uwyhzEImO6 .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uwyhzEImO6 .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uwyhzEImO6 .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uwyhzEImO6 .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uwyhzEImO6 .mbr-section-title {
  color: #ffffff;
}
.cid-uwyhzEImO6 .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uwyhzEImO6 .mbr-text {
  color: #d2d2df;
}
.cid-uwymastsTy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uwymastsTy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uwymastsTy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwymastsTy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uwymastsTy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uwymastsTy .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uwymastsTy .container {
  padding: 0;
}
.cid-uwymastsTy .icon-focus {
  display: none;
}
.cid-uwymastsTy .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uwymastsTy .btn-primary-outline:hover {
  background: transparent !important;
  color: #161616 !important;
}
.cid-uwymastsTy li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uwymastsTy li {
  position: relative;
}
.cid-uwymastsTy .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uwymastsTy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uwymastsTy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uwymastsTy .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-uwymastsTy .btn {
  font-family: Manrope !important;
}
.cid-uwymastsTy .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uwymastsTy .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-uwymastsTy .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #353535 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-uwymastsTy li:not(:last-child):after {
    top: 9px;
  }
  .cid-uwymastsTy .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
}
.cid-uz8mkXtVAk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uz8mkXtVAk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz8mkXtVAk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz8mkXtVAk .col-title {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 10px 50px;
}
.cid-uz8mkXtVAk .mbr-section-title {
  color: #112B6D;
  margin-bottom: 20px;
}
.cid-uz8mkXtVAk .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0.9rem;
}
.cid-uz8mkXtVAk .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
  flex-wrap: wrap;
}
.cid-uz8mkXtVAk .card {
  width: 50%;
  padding: 5px;
}
.cid-uz8mkXtVAk .card .card-box {
  background-color: #ffdec7;
}
.cid-uz8mkXtVAk .card:nth-child(2n) .card-box {
  background-color: #e1f5ff;
}
@media (max-width: 991px) {
  .cid-uz8mkXtVAk .card {
    width: 100%;
  }
}
.cid-uz8mkXtVAk .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 15% 15% 15% 15%;
}
.cid-uz8mkXtVAk .card-container {
  width: 100%;
}
.cid-uz8mkXtVAk .card-title {
  color: #112B6D;
  margin-bottom: 20px !important;
}
.cid-uz8mkXtVAk .card-text {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
.cid-uz8mkXtVAk .mbr-section-btn {
  margin-top: 10px;
}
.cid-uz8mkXtVAk .mbr-section-subtitle P {
  text-align: center;
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uzbzveQrEO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzbzveQrEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzbzveQrEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzbzveQrEO .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-uzbzveQrEO .col-text {
    padding-right: 28px;
  }
}
.cid-uzbzveQrEO .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uzbzveQrEO .col-img {
    padding-left: 28px;
  }
}
.cid-uzbzveQrEO .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzbzveQrEO .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-uzbzveQrEO .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzbzveQrEO .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-uzbzveQrEO .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uzbzveQrEO .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uzbzveQrEO .mbr-section-btn {
    width: 100%;
  }
}
.cid-uzbzveQrEO .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzbzveQrEO .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-uzbzveQrEO .image-wrapper {
    height: auto;
  }
}
.cid-uzbzveQrEO .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-uzbBI6FKVZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzbBI6FKVZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzbBI6FKVZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzbBI6FKVZ .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-uzbBI6FKVZ .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-uzbBI6FKVZ .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzbBI6FKVZ .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uzbBI6FKVZ .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-uzbBI6FKVZ .card-text {
    padding-top: 5rem;
  }
}
.cid-uzbBI6FKVZ .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzbBI6FKVZ .item-wrapper:hover {
  background-color: #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzbBI6FKVZ .item-wrapper:hover .card-title,
.cid-uzbBI6FKVZ .item-wrapper:hover .card-text,
.cid-uzbBI6FKVZ .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uzbBI6FKVZ .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uzbBI6FKVZ .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-uzbBI6FKVZ .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #221b35;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-uzbBI6FKVZ .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-uzbBI6FKVZ .mbr-section-title {
  color: #221b35;
}
.cid-uzbBI6FKVZ .mbr-section-subtitle {
  color: #221b35;
}
.cid-uzbBI6FKVZ .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uzbBI6FKVZ .card-box .item-footer {
  margin-top: auto;
}
.cid-uzbBI6FKVZ .content-head {
  max-width: 800px;
}
.cid-uzbBI6FKVZ .card-title,
.cid-uzbBI6FKVZ .iconfont-wrapper {
  color: #221b35;
}
.cid-uzbBI6FKVZ .card-text,
.cid-uzbBI6FKVZ .item .mbr-section-btn {
  color: #221b35;
}
.cid-uzbCRpoVRm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9e9e6;
}
.cid-uzbCRpoVRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzbCRpoVRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzbCRpoVRm .row {
  justify-content: center;
}
.cid-uzbCRpoVRm .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uzbCRpoVRm .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uzbCRpoVRm .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uzbCRpoVRm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uzbCRpoVRm .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uzbCRpoVRm .item {
    margin-bottom: 35px;
  }
}
.cid-uzbCRpoVRm .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uzbCRpoVRm .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uzbCRpoVRm .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-uzbCRpoVRm .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uzbCRpoVRm .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uzbCRpoVRm .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-uzbCRpoVRm .mbr-section-title {
  color: #000000;
}
.cid-uzbCRpoVRm .mbr-text {
  color: #000000;
}
.cid-uzbCRpoVRm .item-title {
  color: #000000;
}
.cid-uzbCRpoVRm .item-text {
  color: #000000;
}
.cid-uzbBBv5RgI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzbBBv5RgI .row {
  justify-content: center;
}
.cid-uzbBBv5RgI .mbr-section-title {
  color: #FFFFFF;
  width: 100%;
}
.cid-uzbBBv5RgI .mbr-section-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-top: 24px;
}
.cid-uzbBBv5RgI .col-title {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 56px;
}
.cid-uzbBBv5RgI .cards-wrapper {
  position: relative;
  padding: 0 !important;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uzbBBv5RgI .number-line {
  position: absolute;
  left: 19px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uzbBBv5RgI .number-line {
    display: none !important;
  }
}
.cid-uzbBBv5RgI .card {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uzbBBv5RgI .card:not(:nth-child(2)) {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .cid-uzbBBv5RgI .card:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
  .cid-uzbBBv5RgI .card:nth-child(5)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
}
.cid-uzbBBv5RgI .card-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: visible;
}
.cid-uzbBBv5RgI .card-number-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  min-width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #0a0a0a;
}
@media (max-width: 991px) {
  .cid-uzbBBv5RgI .card-number-container {
    position: absolute;
    left: 24px;
    top: -19px;
    min-width: auto;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 50%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzbBBv5RgI .card-number-container {
    left: 16px;
  }
}
.cid-uzbBBv5RgI .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid #ffffff;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 50%;
}
.cid-uzbBBv5RgI .card-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 24px;
  border: 2px solid #ffffff;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uzbBBv5RgI .card-box {
    padding: 16px;
    flex-wrap: wrap;
  }
}
.cid-uzbBBv5RgI .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  padding: 40px;
  border-radius: 12px;
  margin-right: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #161616, #353535);
}
@media (max-width: 767px) {
  .cid-uzbBBv5RgI .card-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uzbBBv5RgI .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzbBBv5RgI .img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzbBBv5RgI .card-text-container {
  width: 100%;
}
.cid-uzbBBv5RgI .card-title {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
}
.cid-uzbBBv5RgI .card-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cid-uzbBBv5RgI .card-subtitle {
    margin-top: 8px;
  }
}
.cid-uzbBBv5RgI .card-text {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-uzbBBv5RgI .card-text {
    margin-top: 16px;
  }
}
.cid-uzbVnqQBkN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uzbVnqQBkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzbVnqQBkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzbVnqQBkN .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uzbVnqQBkN .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uzbVnqQBkN .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .panel-group .card {
    padding: 16px;
  }
}
.cid-uzbVnqQBkN .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uzbVnqQBkN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uzbVnqQBkN .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uzbVnqQBkN .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uzbVnqQBkN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uzbVnqQBkN .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uzbVnqQBkN .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uzbVnqQBkN .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uzbVnqQBkN .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uzbVnqQBkN .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uzbVnqQBkN .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uzbVnqQBkN .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uzbVnqQBkN .mbr-section-title {
  color: #272b2e;
}
.cid-uzbVnqQBkN .panel-title-edit {
  color: #272b2e;
}
.cid-uzbVnqQBkN .panel-text {
  color: #15171a;
}
.cid-uzbVnqQBkN .card-title {
  color: #272b2e;
}
.cid-uzbVnqQBkN .card-title,
.cid-uzbVnqQBkN .icon-wrap,
.cid-uzbVnqQBkN .mbr-section-btn {
  text-align: center;
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
.cid-uzcbYm4zBa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa {
    min-height: 70px;
  }
}
.cid-uzcbYm4zBa nav.navbar {
  position: fixed;
}
.cid-uzcbYm4zBa .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-uzcbYm4zBa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzcbYm4zBa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uzcbYm4zBa .dropdown-item:hover,
.cid-uzcbYm4zBa .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-uzcbYm4zBa .dropdown-item:hover span {
  color: white;
}
.cid-uzcbYm4zBa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzcbYm4zBa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzcbYm4zBa .dropdown-item:hover,
.cid-uzcbYm4zBa .dropdown-item:focus,
.cid-uzcbYm4zBa .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-uzcbYm4zBa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzcbYm4zBa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzcbYm4zBa .nav-link {
  position: relative;
}
.cid-uzcbYm4zBa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzcbYm4zBa .container {
    flex-wrap: nowrap;
  }
}
.cid-uzcbYm4zBa .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzcbYm4zBa .navbar-caption {
  font-weight: 700;
}
.cid-uzcbYm4zBa .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uzcbYm4zBa .dropdown-menu,
.cid-uzcbYm4zBa .navbar.opened {
  background: #ffffff !important;
}
.cid-uzcbYm4zBa .nav-item:focus,
.cid-uzcbYm4zBa .nav-link:focus {
  outline: none;
}
.cid-uzcbYm4zBa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzcbYm4zBa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzcbYm4zBa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzcbYm4zBa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzcbYm4zBa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzcbYm4zBa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzcbYm4zBa .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .navbar {
    min-height: 80px;
  }
  .cid-uzcbYm4zBa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzcbYm4zBa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzcbYm4zBa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzcbYm4zBa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzcbYm4zBa .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-uzcbYm4zBa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzcbYm4zBa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzcbYm4zBa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzcbYm4zBa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzcbYm4zBa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzcbYm4zBa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzcbYm4zBa .navbar.opened {
  transition: all 0.3s;
}
.cid-uzcbYm4zBa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzcbYm4zBa .navbar .navbar-logo img {
  width: auto;
}
.cid-uzcbYm4zBa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzcbYm4zBa .navbar.collapsed {
  justify-content: center;
}
.cid-uzcbYm4zBa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzcbYm4zBa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzcbYm4zBa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uzcbYm4zBa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzcbYm4zBa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzcbYm4zBa .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-uzcbYm4zBa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzcbYm4zBa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzcbYm4zBa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uzcbYm4zBa .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uzcbYm4zBa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzcbYm4zBa .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uzcbYm4zBa .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .navbar-brand {
    min-height: 80px;
  }
}
.cid-uzcbYm4zBa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzcbYm4zBa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzcbYm4zBa .dropdown-item.active,
.cid-uzcbYm4zBa .dropdown-item:active {
  background-color: transparent;
}
.cid-uzcbYm4zBa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzcbYm4zBa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzcbYm4zBa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzcbYm4zBa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzcbYm4zBa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzcbYm4zBa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzcbYm4zBa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzcbYm4zBa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzcbYm4zBa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzcbYm4zBa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uzcbYm4zBa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzcbYm4zBa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzcbYm4zBa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzcbYm4zBa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzcbYm4zBa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzcbYm4zBa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzcbYm4zBa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzcbYm4zBa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzcbYm4zBa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzcbYm4zBa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzcbYm4zBa .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-uzcbYm4zBa .navbar {
    height: 70px;
  }
  .cid-uzcbYm4zBa .navbar.opened {
    height: auto;
  }
  .cid-uzcbYm4zBa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzcbYm4zBa .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uzcbYm4zBa .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uzcbYm4zBa .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uzcbYm4zBa .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uzcbYnQGew {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzcbYnQGew .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzcbYnQGew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzcbYnQGew .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-uzcbYnQGew .col-text {
    padding-right: 28px;
  }
}
.cid-uzcbYnQGew .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uzcbYnQGew .col-img {
    padding-left: 28px;
  }
}
.cid-uzcbYnQGew .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzcbYnQGew .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-uzcbYnQGew .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzcbYnQGew .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-uzcbYnQGew .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uzcbYnQGew .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uzcbYnQGew .mbr-section-btn {
    width: 100%;
  }
}
.cid-uzcbYnQGew .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzcbYnQGew .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-uzcbYnQGew .image-wrapper {
    height: auto;
  }
}
.cid-uzcbYnQGew .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-uzcbYpm8dm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzcbYpm8dm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzcbYpm8dm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzcbYpm8dm .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-uzcbYpm8dm .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-uzcbYpm8dm .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzcbYpm8dm .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uzcbYpm8dm .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-uzcbYpm8dm .card-text {
    padding-top: 5rem;
  }
}
.cid-uzcbYpm8dm .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzcbYpm8dm .item-wrapper:hover {
  background-color: #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzcbYpm8dm .item-wrapper:hover .card-title,
.cid-uzcbYpm8dm .item-wrapper:hover .card-text,
.cid-uzcbYpm8dm .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uzcbYpm8dm .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uzcbYpm8dm .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-uzcbYpm8dm .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #221b35;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-uzcbYpm8dm .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-uzcbYpm8dm .mbr-section-title {
  color: #221b35;
}
.cid-uzcbYpm8dm .mbr-section-subtitle {
  color: #221b35;
}
.cid-uzcbYpm8dm .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uzcbYpm8dm .card-box .item-footer {
  margin-top: auto;
}
.cid-uzcbYpm8dm .content-head {
  max-width: 800px;
}
.cid-uzcbYpm8dm .card-title,
.cid-uzcbYpm8dm .iconfont-wrapper {
  color: #221b35;
}
.cid-uzcbYpm8dm .card-text,
.cid-uzcbYpm8dm .item .mbr-section-btn {
  color: #221b35;
}
.cid-uzchIxP2QH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff8ef;
}
.cid-uzchIxP2QH .item:focus,
.cid-uzchIxP2QH span:focus {
  outline: none;
}
.cid-uzchIxP2QH .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzchIxP2QH .item {
    margin-bottom: 1rem;
  }
}
.cid-uzchIxP2QH .mbr-card-title {
  background: #fed9e1;
  width: fit-content;
  border-radius: 1rem;
  padding: 6px 10px;
}
.cid-uzchIxP2QH .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uzchIxP2QH .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uzchIxP2QH .item-content {
    padding: 1rem 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-uzchIxP2QH .item-wrapper {
  position: relative;
  background: #d8d5d1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uzchIxP2QH .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uzchIxP2QH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uzchIxP2QH .mbr-text,
.cid-uzchIxP2QH .item .mbr-section-btn {
  text-align: center;
}
.cid-uzchIxP2QH .content-head {
  max-width: 800px;
}
.cid-uzchIxP2QH .mbr-number {
  color: #f0466a;
}
.cid-uzchIxP2QH .mbr-section-subtitle,
.cid-uzchIxP2QH .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-uzchIxP2QH .mbr-text {
  text-align: left;
}
.cid-uzchIxP2QH .mbr-text,
.cid-uzchIxP2QH .mbr-card-btn {
  text-align: left;
}
.cid-uzchIxP2QH .mbr-text,
.cid-uzchIxP2QH .mbr-section-btn {
  text-align: left;
}
.cid-uzchIxP2QH .mbr-text,
.cid-uzchIxP2QH .item-footer .mbr-section-btn {
  text-align: left;
}
.cid-uzchIxP2QH .card-text,
.cid-uzchIxP2QH .item .mbr-section-btn {
  text-align: left;
}
.cid-uzchIxP2QH .card-title {
  text-align: left;
}
.cid-uzcbYsDevN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzcbYsDevN .row {
  justify-content: center;
}
.cid-uzcbYsDevN .mbr-section-title {
  color: #FFFFFF;
  width: 100%;
}
.cid-uzcbYsDevN .mbr-section-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-top: 24px;
}
.cid-uzcbYsDevN .col-title {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 56px;
}
.cid-uzcbYsDevN .cards-wrapper {
  position: relative;
  padding: 0 !important;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uzcbYsDevN .number-line {
  position: absolute;
  left: 19px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uzcbYsDevN .number-line {
    display: none !important;
  }
}
.cid-uzcbYsDevN .card {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uzcbYsDevN .card:not(:nth-child(2)) {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .cid-uzcbYsDevN .card:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
  .cid-uzcbYsDevN .card:nth-child(6)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
}
.cid-uzcbYsDevN .card-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: visible;
}
.cid-uzcbYsDevN .card-number-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  min-width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #0a0a0a;
}
@media (max-width: 991px) {
  .cid-uzcbYsDevN .card-number-container {
    position: absolute;
    left: 24px;
    top: -19px;
    min-width: auto;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 50%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzcbYsDevN .card-number-container {
    left: 16px;
  }
}
.cid-uzcbYsDevN .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid #ffffff;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 50%;
}
.cid-uzcbYsDevN .card-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 24px;
  border: 2px solid #ffffff;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uzcbYsDevN .card-box {
    padding: 16px;
    flex-wrap: wrap;
  }
}
.cid-uzcbYsDevN .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  padding: 40px;
  border-radius: 12px;
  margin-right: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #161616, #353535);
}
@media (max-width: 767px) {
  .cid-uzcbYsDevN .card-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uzcbYsDevN .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzcbYsDevN .img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzcbYsDevN .card-text-container {
  width: 100%;
}
.cid-uzcbYsDevN .card-title {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
}
.cid-uzcbYsDevN .card-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cid-uzcbYsDevN .card-subtitle {
    margin-top: 8px;
  }
}
.cid-uzcbYsDevN .card-text {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-uzcbYsDevN .card-text {
    margin-top: 16px;
  }
}
.cid-uzcbYurVKi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uzcbYurVKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzcbYurVKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzcbYurVKi .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uzcbYurVKi .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uzcbYurVKi .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .panel-group .card {
    padding: 16px;
  }
}
.cid-uzcbYurVKi .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uzcbYurVKi .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uzcbYurVKi .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uzcbYurVKi .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uzcbYurVKi .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uzcbYurVKi .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uzcbYurVKi .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uzcbYurVKi .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uzcbYurVKi .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uzcbYurVKi .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uzcbYurVKi .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uzcbYurVKi .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uzcbYurVKi .mbr-section-title {
  color: #272b2e;
}
.cid-uzcbYurVKi .panel-title-edit {
  color: #272b2e;
}
.cid-uzcbYurVKi .panel-text {
  color: #15171a;
}
.cid-uzcbYurVKi .card-title {
  color: #272b2e;
}
.cid-uzcbYurVKi .card-title,
.cid-uzcbYurVKi .icon-wrap,
.cid-uzcbYurVKi .mbr-section-btn {
  text-align: center;
}
.cid-uzcbYwfo9W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-uzcbYwfo9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzcbYwfo9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uzcbYwfo9W .container {
    padding: 0 16px;
  }
}
.cid-uzcbYwfo9W .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uzcbYwfo9W .card {
    margin-bottom: 40px;
  }
}
.cid-uzcbYwfo9W .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uzcbYwfo9W .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uzcbYwfo9W .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uzcbYwfo9W .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzcbYwfo9W .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uzcbYwfo9W .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uzcbYwfo9W .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzcbYwfo9W .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uzcbYwfo9W .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzcbYwfo9W .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uzcbYwfo9W .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uzcbYwfo9W .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uzcbYwfo9W .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uzcbYwfo9W .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uzcbYwfo9W .mbr-section-title {
  color: #ffffff;
}
.cid-uzcbYwfo9W .copyright {
  color: #ffffff;
}
.cid-uzcbYwfo9W .mbr-card-title {
  color: #ffffff;
}
.cid-uzcbYwfo9W .list {
  color: #ffffff;
}
.cid-uzclYZrjBw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw {
    min-height: 70px;
  }
}
.cid-uzclYZrjBw nav.navbar {
  position: fixed;
}
.cid-uzclYZrjBw .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-uzclYZrjBw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzclYZrjBw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uzclYZrjBw .dropdown-item:hover,
.cid-uzclYZrjBw .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-uzclYZrjBw .dropdown-item:hover span {
  color: white;
}
.cid-uzclYZrjBw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzclYZrjBw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzclYZrjBw .dropdown-item:hover,
.cid-uzclYZrjBw .dropdown-item:focus,
.cid-uzclYZrjBw .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-uzclYZrjBw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzclYZrjBw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzclYZrjBw .nav-link {
  position: relative;
}
.cid-uzclYZrjBw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzclYZrjBw .container {
    flex-wrap: nowrap;
  }
}
.cid-uzclYZrjBw .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzclYZrjBw .navbar-caption {
  font-weight: 700;
}
.cid-uzclYZrjBw .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uzclYZrjBw .dropdown-menu,
.cid-uzclYZrjBw .navbar.opened {
  background: #ffffff !important;
}
.cid-uzclYZrjBw .nav-item:focus,
.cid-uzclYZrjBw .nav-link:focus {
  outline: none;
}
.cid-uzclYZrjBw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzclYZrjBw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzclYZrjBw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzclYZrjBw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzclYZrjBw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzclYZrjBw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzclYZrjBw .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .navbar {
    min-height: 80px;
  }
  .cid-uzclYZrjBw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzclYZrjBw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzclYZrjBw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzclYZrjBw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzclYZrjBw .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-uzclYZrjBw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzclYZrjBw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzclYZrjBw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzclYZrjBw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzclYZrjBw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzclYZrjBw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzclYZrjBw .navbar.opened {
  transition: all 0.3s;
}
.cid-uzclYZrjBw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzclYZrjBw .navbar .navbar-logo img {
  width: auto;
}
.cid-uzclYZrjBw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzclYZrjBw .navbar.collapsed {
  justify-content: center;
}
.cid-uzclYZrjBw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzclYZrjBw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzclYZrjBw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uzclYZrjBw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzclYZrjBw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzclYZrjBw .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-uzclYZrjBw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzclYZrjBw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzclYZrjBw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uzclYZrjBw .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uzclYZrjBw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzclYZrjBw .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uzclYZrjBw .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .navbar-brand {
    min-height: 80px;
  }
}
.cid-uzclYZrjBw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzclYZrjBw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzclYZrjBw .dropdown-item.active,
.cid-uzclYZrjBw .dropdown-item:active {
  background-color: transparent;
}
.cid-uzclYZrjBw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzclYZrjBw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzclYZrjBw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzclYZrjBw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzclYZrjBw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzclYZrjBw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzclYZrjBw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzclYZrjBw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzclYZrjBw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzclYZrjBw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uzclYZrjBw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzclYZrjBw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzclYZrjBw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzclYZrjBw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzclYZrjBw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzclYZrjBw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzclYZrjBw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzclYZrjBw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzclYZrjBw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzclYZrjBw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzclYZrjBw .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-uzclYZrjBw .navbar {
    height: 70px;
  }
  .cid-uzclYZrjBw .navbar.opened {
    height: auto;
  }
  .cid-uzclYZrjBw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzclYZrjBw .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uzclYZrjBw .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uzclYZrjBw .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uzclYZrjBw .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uzclZ1gxBq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzclZ1gxBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzclZ1gxBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzclZ1gxBq .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-uzclZ1gxBq .col-text {
    padding-right: 28px;
  }
}
.cid-uzclZ1gxBq .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uzclZ1gxBq .col-img {
    padding-left: 28px;
  }
}
.cid-uzclZ1gxBq .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzclZ1gxBq .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-uzclZ1gxBq .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzclZ1gxBq .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-uzclZ1gxBq .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uzclZ1gxBq .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uzclZ1gxBq .mbr-section-btn {
    width: 100%;
  }
}
.cid-uzclZ1gxBq .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzclZ1gxBq .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-uzclZ1gxBq .image-wrapper {
    height: auto;
  }
}
.cid-uzclZ1gxBq .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-uzclZ2Mxnr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzclZ2Mxnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzclZ2Mxnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzclZ2Mxnr .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-uzclZ2Mxnr .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-uzclZ2Mxnr .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzclZ2Mxnr .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uzclZ2Mxnr .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-uzclZ2Mxnr .card-text {
    padding-top: 5rem;
  }
}
.cid-uzclZ2Mxnr .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzclZ2Mxnr .item-wrapper:hover {
  background-color: #161616;
  transition: all ease-in-out 0.3s;
}
.cid-uzclZ2Mxnr .item-wrapper:hover .card-title,
.cid-uzclZ2Mxnr .item-wrapper:hover .card-text,
.cid-uzclZ2Mxnr .item-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uzclZ2Mxnr .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uzclZ2Mxnr .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-uzclZ2Mxnr .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #221b35;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-uzclZ2Mxnr .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-uzclZ2Mxnr .mbr-section-title {
  color: #221b35;
}
.cid-uzclZ2Mxnr .mbr-section-subtitle {
  color: #221b35;
}
.cid-uzclZ2Mxnr .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uzclZ2Mxnr .card-box .item-footer {
  margin-top: auto;
}
.cid-uzclZ2Mxnr .content-head {
  max-width: 800px;
}
.cid-uzclZ2Mxnr .card-title,
.cid-uzclZ2Mxnr .iconfont-wrapper {
  color: #221b35;
}
.cid-uzclZ2Mxnr .card-text,
.cid-uzclZ2Mxnr .item .mbr-section-btn {
  color: #221b35;
}
.cid-uzclZ64aH8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff8ef;
}
.cid-uzclZ64aH8 .item:focus,
.cid-uzclZ64aH8 span:focus {
  outline: none;
}
.cid-uzclZ64aH8 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzclZ64aH8 .item {
    margin-bottom: 1rem;
  }
}
.cid-uzclZ64aH8 .mbr-card-title {
  background: #fed9e1;
  width: fit-content;
  border-radius: 1rem;
  padding: 6px 10px;
}
.cid-uzclZ64aH8 .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uzclZ64aH8 .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uzclZ64aH8 .item-content {
    padding: 1rem 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-uzclZ64aH8 .item-wrapper {
  position: relative;
  background: #d8d5d1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uzclZ64aH8 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uzclZ64aH8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uzclZ64aH8 .mbr-text,
.cid-uzclZ64aH8 .item .mbr-section-btn {
  text-align: center;
}
.cid-uzclZ64aH8 .content-head {
  max-width: 800px;
}
.cid-uzclZ64aH8 .mbr-number {
  color: #f0466a;
}
.cid-uzclZ64aH8 .mbr-section-subtitle,
.cid-uzclZ64aH8 .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-uzclZ64aH8 .mbr-text {
  text-align: left;
}
.cid-uzclZ64aH8 .mbr-text,
.cid-uzclZ64aH8 .mbr-card-btn {
  text-align: left;
}
.cid-uzclZ64aH8 .mbr-text,
.cid-uzclZ64aH8 .mbr-section-btn {
  text-align: left;
}
.cid-uzclZ64aH8 .mbr-text,
.cid-uzclZ64aH8 .item-footer .mbr-section-btn {
  text-align: left;
}
.cid-uzclZ64aH8 .card-text,
.cid-uzclZ64aH8 .item .mbr-section-btn {
  text-align: left;
}
.cid-uzclZ64aH8 .card-title {
  text-align: left;
}
.cid-uzclZ8dRUA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uzclZ8dRUA .row {
  justify-content: center;
}
.cid-uzclZ8dRUA .mbr-section-title {
  color: #FFFFFF;
  width: 100%;
}
.cid-uzclZ8dRUA .mbr-section-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-top: 24px;
}
.cid-uzclZ8dRUA .col-title {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 56px;
}
.cid-uzclZ8dRUA .cards-wrapper {
  position: relative;
  padding: 0 !important;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.cid-uzclZ8dRUA .number-line {
  position: absolute;
  left: 19px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uzclZ8dRUA .number-line {
    display: none !important;
  }
}
.cid-uzclZ8dRUA .card {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uzclZ8dRUA .card:not(:nth-child(2)) {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .cid-uzclZ8dRUA .card:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
  .cid-uzclZ8dRUA .card:nth-child(5)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: 9;
    width: 2px;
    height: 50%;
    background-color: #0a0a0a;
  }
}
.cid-uzclZ8dRUA .card-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: visible;
}
.cid-uzclZ8dRUA .card-number-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  min-width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #0a0a0a;
}
@media (max-width: 991px) {
  .cid-uzclZ8dRUA .card-number-container {
    position: absolute;
    left: 24px;
    top: -19px;
    min-width: auto;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 50%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzclZ8dRUA .card-number-container {
    left: 16px;
  }
}
.cid-uzclZ8dRUA .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid #ffffff;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 50%;
}
.cid-uzclZ8dRUA .card-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 24px;
  border: 2px solid #ffffff;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uzclZ8dRUA .card-box {
    padding: 16px;
    flex-wrap: wrap;
  }
}
.cid-uzclZ8dRUA .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  padding: 40px;
  border-radius: 12px;
  margin-right: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #161616, #353535);
}
@media (max-width: 767px) {
  .cid-uzclZ8dRUA .card-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uzclZ8dRUA .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzclZ8dRUA .img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.cid-uzclZ8dRUA .card-text-container {
  width: 100%;
}
.cid-uzclZ8dRUA .card-title {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
}
.cid-uzclZ8dRUA .card-subtitle {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cid-uzclZ8dRUA .card-subtitle {
    margin-top: 8px;
  }
}
.cid-uzclZ8dRUA .card-text {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-uzclZ8dRUA .card-text {
    margin-top: 16px;
  }
}
.cid-uzclZaatE2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uzclZaatE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzclZaatE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzclZaatE2 .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uzclZaatE2 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uzclZaatE2 .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .panel-group .card {
    padding: 16px;
  }
}
.cid-uzclZaatE2 .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uzclZaatE2 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uzclZaatE2 .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uzclZaatE2 .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uzclZaatE2 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uzclZaatE2 .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uzclZaatE2 .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uzclZaatE2 .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uzclZaatE2 .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uzclZaatE2 .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uzclZaatE2 .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uzclZaatE2 .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uzclZaatE2 .mbr-section-title {
  color: #272b2e;
}
.cid-uzclZaatE2 .panel-title-edit {
  color: #272b2e;
}
.cid-uzclZaatE2 .panel-text {
  color: #15171a;
}
.cid-uzclZaatE2 .card-title {
  color: #272b2e;
}
.cid-uzclZaatE2 .card-title,
.cid-uzclZaatE2 .icon-wrap,
.cid-uzclZaatE2 .mbr-section-btn {
  text-align: center;
}
.cid-uzclZc90o9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-uzclZc90o9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzclZc90o9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uzclZc90o9 .container {
    padding: 0 16px;
  }
}
.cid-uzclZc90o9 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uzclZc90o9 .card {
    margin-bottom: 40px;
  }
}
.cid-uzclZc90o9 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uzclZc90o9 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uzclZc90o9 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uzclZc90o9 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzclZc90o9 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uzclZc90o9 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uzclZc90o9 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzclZc90o9 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uzclZc90o9 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzclZc90o9 .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-uzclZc90o9 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uzclZc90o9 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uzclZc90o9 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uzclZc90o9 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uzclZc90o9 .mbr-section-title {
  color: #ffffff;
}
.cid-uzclZc90o9 .copyright {
  color: #ffffff;
}
.cid-uzclZc90o9 .mbr-card-title {
  color: #ffffff;
}
.cid-uzclZc90o9 .list {
  color: #ffffff;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #ffffff !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #161616 !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #c2c0bc !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #ffffff !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uzdbY2BanE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-uzdbY2BanE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdbY2BanE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdbY2BanE .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uzdbY2BanE .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uzdbY2BanE .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uzdbY2BanE .container {
    padding: 0 20px;
  }
}
.cid-uzdbY2BanE .row {
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uzdbY2BanE .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzdbY2BanE .content-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uzdbY2BanE .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzdbY2BanE .content-wrapper .mbr-desc {
  margin: 56px 0 0 0;
}
@media (max-width: 1440px) {
  .cid-uzdbY2BanE .content-wrapper .mbr-desc {
    margin: 40px 0 0 0;
  }
}
.cid-uzdbY2BanE .image-wrapper img {
  height: 400px;
  border-radius: .75rem !important;
  object-fit: cover;
}
.cid-uzdbY2BanE .mbr-section-title {
  color: #000000;
}
.cid-uzdbY2BanE .mbr-desc {
  color: #000000;
}
.cid-uzdfjj0Mgj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzdfjj0Mgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdfjj0Mgj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdfjj0Mgj .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uzdfjj0Mgj .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uzdfjj0Mgj .items-wrapper {
  margin: 0 -10px;
}
.cid-uzdfjj0Mgj .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uzdfjj0Mgj .item {
    margin-bottom: 16px;
  }
}
.cid-uzdfjj0Mgj .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uzdfjj0Mgj .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uzdfjj0Mgj .item:hover .item-wrapper .item-content .item-img,
.cid-uzdfjj0Mgj .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uzdfjj0Mgj .item:nth-child(2n) .item-wrapper {
  background-color: #ffe2d4;
}
.cid-uzdfjj0Mgj .item:nth-child(3n) .item-wrapper {
  background-color: #ff8576;
}
.cid-uzdfjj0Mgj .item:nth-child(4n) .item-wrapper {
  background-color: #eaffbf;
}
.cid-uzdfjj0Mgj .item:nth-child(6n) .item-wrapper {
  background-color: #d2f2f5;
}
.cid-uzdfjj0Mgj .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #ffb849;
}
@media (max-width: 992px) {
  .cid-uzdfjj0Mgj .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content {
  position: relative;
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uzdfjj0Mgj .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uzdfjj0Mgj .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uzdfjj0Mgj .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uzdfjj0Mgj .mbr-section-title {
  color: #212529;
}
.cid-uzdfjj0Mgj .panel-title-edit {
  color: #212529;
}
.cid-uzdfjj0Mgj .panel-text {
  color: #51565c;
}
.cid-uzdhJVxGvt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uzdhJVxGvt .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uzdhJVxGvt .row {
    padding: 0 16px;
  }
}
.cid-uzdhJVxGvt .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 100px;
  border-radius: 10px;
  background-color: #f8f9fc;
}
@media (max-width: 767px) {
  .cid-uzdhJVxGvt .content-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uzdhJVxGvt .content-wrapper {
    padding: 40px;
  }
}
.cid-uzdhJVxGvt .image-wrapper {
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.cid-uzdhJVxGvt .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uzdhJVxGvt .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
}
.cid-uzdhJVxGvt .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
.cid-uzdhJVxGvt .item-container {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzdhJVxGvt .item-container {
    margin-top: 0;
  }
}
.cid-uzdhJVxGvt .item {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cid-uzdhJVxGvt .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-uzdhJVxGvt .item {
    flex-direction: column;
  }
}
.cid-uzdhJVxGvt .icon-box {
  background: #ffffff;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uzdhJVxGvt .icon-box {
    margin-right: 0;
  }
}
.cid-uzdhJVxGvt .text-box {
  flex-grow: 1;
}
.cid-uzdhJVxGvt .number-text {
  color: #161616;
}
.cid-uzdhJVxGvt .icon-text {
  color: #111111;
}
.cid-uzdhJVxGvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdhJVxGvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdluQpNtf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-uzdluQpNtf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdluQpNtf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdluQpNtf .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uzdluQpNtf .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uzdluQpNtf .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uzdluQpNtf .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uzdluQpNtf .container {
    padding: 0 16px;
  }
}
.cid-uzdluQpNtf .row {
  justify-content: center;
}
.cid-uzdluQpNtf .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uzdluQpNtf .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uzdluQpNtf .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uzdluQpNtf .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uzdluQpNtf .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uzdluQpNtf .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uzdluQpNtf .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uzdluQpNtf .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uzdluQpNtf .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uzdluQpNtf .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uzdluQpNtf .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uzdluQpNtf .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uzdluQpNtf .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uzdluQpNtf .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uzdluQpNtf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uzdluQpNtf .panel-title {
  color: #000000;
}
.cid-uzdluQpNtf .panel-text {
  color: #000000;
}
.cid-uzdo3Orx84 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uzdo3Orx84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdo3Orx84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdo3Orx84 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uzdo3Orx84 .mbr-section-title {
  color: #24262b;
}
.cid-uzdo3Orx84 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uzdo3Orx84 .cards-row {
  row-gap: 32px;
}
.cid-uzdo3Orx84 .card {
  border-radius: 0;
}
.cid-uzdo3Orx84 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-uzdo3Orx84 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uzdo3Orx84 .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-uzdo3Orx84 .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uzdo3Orx84 .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #b79b6c;
}
.cid-uzdo3Orx84 .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-uzdo3Orx84 .card-subtitle {
  color: #24262b;
}
.cid-uzdo3Orx84 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uzdo3Orx84 .card-name {
  color: #24262b;
}
.cid-uzdo3Orx84 .card-text {
  color: #24262b;
}
.cid-uzdqNziuOu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uzdqNziuOu .media-container-row {
  justify-content: space-between;
}
.cid-uzdqNziuOu .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uzdqNziuOu .text-content {
    max-width: none;
  }
}
.cid-uzdqNziuOu .container {
  z-index: 1;
}
.cid-uzdqNziuOu .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
}
.cid-uzdqNziuOu .bg_column-reverse {
  flex-direction: column-reverse;
}
.cid-uzdqNziuOu .bg__white {
  background: #fff;
  height: 100%;
}
.cid-uzdqNziuOu .bg__gray {
  background: #fcf5e6;
  height: 100%;
}
.cid-uzdqNziuOu .box-shadow {
  position: relative;
  box-shadow: 0 4px 8px 0 #1a1a0159;
  border-radius: 24px;
  padding: 4rem 19rem;
  margin: 0;
  background: #fff;
}
@media (max-width: 1400px) {
  .cid-uzdqNziuOu .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-uzdqNziuOu .box-shadow {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uzdqNziuOu .icons {
    justify-content: center !important;
  }
  .cid-uzdqNziuOu .box-shadow {
    width: 100%;
    padding: 3rem 1rem;
  }
  .cid-uzdqNziuOu .text-content * {
    text-align: center;
  }
}
.cid-uzdqNziuOu .geometry {
  position: absolute;
}
.cid-uzdqNziuOu .geometry__square,
.cid-uzdqNziuOu .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-uzdqNziuOu .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-uzdqNziuOu .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #2705fc;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-uzdqNziuOu .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-uzdqNziuOu .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #2705fc;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-uzdqNziuOu .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-uzdqNziuOu .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
@media (min-width: 768px) {
  .cid-uzdqNziuOu .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-uzdqNziuOu .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-uzdqNziuOu .box-shadow:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-uzdqNziuOu .box-shadow:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-uzdqNziuOu .geometry {
    position: absolute;
  }
  .cid-uzdqNziuOu .geometry__circle,
  .cid-uzdqNziuOu .geometry__circle-bg,
  .cid-uzdqNziuOu .geometry__square,
  .cid-uzdqNziuOu .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-utImkYW5Mo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-utImkYW5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utImkYW5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .container {
    padding: 0 16px;
  }
}
.cid-utImkYW5Mo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utImkYW5Mo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utImkYW5Mo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utImkYW5Mo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-utImkYW5Mo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utImkYW5Mo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utImkYW5Mo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utImkYW5Mo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utImkYW5Mo .mbr-section-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .copyright {
  color: #ffffff;
}
.cid-utImkYW5Mo .mbr-card-title {
  color: #ffffff;
}
.cid-utImkYW5Mo .list {
  color: #ffffff;
}
