body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Acme', sans-serif;
  font-size: 4rem;
  line-height: 92px;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Acme', sans-serif;
  font-size: 3rem;
  line-height: 40px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Acme', sans-serif;
  font-size: 1.3rem;
  line-height: 1.55;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Acme', sans-serif;
  font-size: 1.8rem;
  line-height: 39px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Acme', sans-serif;
  font-size: 1.3rem;
  line-height: 30px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #0041a1 !important;
}
.bg-success {
  background-color: #ff773d !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #003482 !important;
}
.bg-danger {
  background-color: #c0b8a8 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0041a1 !important;
  border-color: #0041a1 !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: #001e4a !important;
  border-color: #001e4a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #001e4a !important;
  border-color: #001e4a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff5740 !important;
  border-color: #ff5740 !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: #e81c00 !important;
  border-color: #e81c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e81c00 !important;
  border-color: #e81c00 !important;
}
.btn-info,
.btn-info: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-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.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-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff773d !important;
  border-color: #ff773d !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: #e54500 !important;
  border-color: #e54500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e54500 !important;
  border-color: #e54500 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #003482 !important;
  border-color: #003482 !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: #00112b !important;
  border-color: #00112b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #00112b !important;
  border-color: #00112b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c0b8a8 !important;
  border-color: #c0b8a8 !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: #9c8f76 !important;
  border-color: #9c8f76 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9c8f76 !important;
  border-color: #9c8f76 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0041a1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #001e4a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0041a1 !important;
  border-color: #0041a1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff5740;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e81c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5740 !important;
  border-color: #ff5740 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff773d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e54500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff773d !important;
  border-color: #ff773d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #003482;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #00112b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #003482 !important;
  border-color: #003482 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c0b8a8;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #9c8f76 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c0b8a8 !important;
  border-color: #c0b8a8 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0041a1 !important;
}
.text-secondary {
  color: #ff5740 !important;
}
.text-success {
  color: #ff773d !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #003482 !important;
}
.text-danger {
  color: #c0b8a8 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #00183b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d91a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d64000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000b1c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #95886d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0041a1;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #003482;
}
.alert-danger {
  background-color: #c0b8a8;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0041a1;
  border-color: #0041a1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0041a1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #217bff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #0267ff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f6f4f2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Acme', sans-serif;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #0041a1 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Acme', sans-serif;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #0041a1;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0041a1;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0041a1;
}
.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: #0041a1;
  border-bottom-color: #0041a1;
}
.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: #0041a1 !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: #ff5740 !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='%230041a1' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  max-height: 48px;
  box-shadow: none;
}
.cid-uMz8weLrNK .navbar-dropdown {
  position: relative !important;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMz8weLrNK .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover,
.cid-uMz8weLrNK .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover span {
  color: white;
}
.cid-uMz8weLrNK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMz8weLrNK .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMz8weLrNK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMz8weLrNK .nav-link {
  position: relative;
}
.cid-uMz8weLrNK .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .container {
    flex-wrap: nowrap;
  }
}
.cid-uMz8weLrNK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMz8weLrNK .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-menu,
.cid-uMz8weLrNK .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uMz8weLrNK .nav-item:focus,
.cid-uMz8weLrNK .nav-link:focus {
  outline: none;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMz8weLrNK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMz8weLrNK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK .navbar.opened {
  transition: all 0.3s;
}
.cid-uMz8weLrNK .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uMz8weLrNK .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uMz8weLrNK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMz8weLrNK .navbar.collapsed {
  justify-content: center;
}
.cid-uMz8weLrNK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMz8weLrNK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMz8weLrNK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMz8weLrNK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMz8weLrNK .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-uMz8weLrNK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMz8weLrNK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMz8weLrNK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMz8weLrNK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMz8weLrNK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMz8weLrNK .navbar.navbar-short {
  min-height: 96px;
}
.cid-uMz8weLrNK .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uMz8weLrNK .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item.active,
.cid-uMz8weLrNK .dropdown-item:active {
  background-color: transparent;
}
.cid-uMz8weLrNK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMz8weLrNK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMz8weLrNK ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMz8weLrNK ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uMz8weLrNK .navbar-buttons {
  text-align: center;
}
.cid-uMz8weLrNK .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uMz8weLrNK .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uMz8weLrNK .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMz8weLrNK button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMz8weLrNK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar {
    height: 70px;
  }
  .cid-uMz8weLrNK .navbar.opened {
    height: auto;
  }
  .cid-uMz8weLrNK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMz8weLrNK .navbar-nav {
  margin: 0 auto;
}
.cid-uMz8weLrNK .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMz8weLrNK .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMz8weLrNK .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMz8weLrNK .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMz8weLrNK .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uMz8weLrNK .content-wrap {
  min-height: 90px;
}
.cid-uNTM8FeYiF {
  background-color: #ebeced;
}
.cid-uNTM8FeYiF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTM8FeYiF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTM8FeYiF .container-fluid {
  padding: 0;
}
.cid-uNTM8FeYiF .row {
  padding: 0;
}
.cid-uNTM8FeYiF .title-wrapper {
  padding: 0 2rem;
}
.cid-uNTM8FeYiF .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-uNTM8FeYiF .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-uNTM8FeYiF .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-uNTM8FeYiF .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-uNTM8FeYiF .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNTM8FeYiF .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uNTM8FeYiF .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNTM8FeYiF .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uNTM8FeYiF .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNTM8FeYiF .title-wrapper img {
    max-height: 300px;
  }
}
.cid-uNTM8FeYiF .mbr-section-title {
  color: #1c314e;
}
.cid-uNTM8FeYiF .mbr-section-subtitle {
  color: #1c314e;
  text-align: center;
}
.cid-uNTM8FeYiF .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uNTM8FeYiF .mbr-section-title,
.cid-uNTM8FeYiF .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNTMOvmGxU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e6e6;
}
.cid-uNTMOvmGxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTMOvmGxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTMOvmGxU .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .container {
    padding: 0 6px;
  }
}
.cid-uNTMOvmGxU .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uNTMOvmGxU .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uNTMOvmGxU .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uNTMOvmGxU .row {
    padding: 0;
  }
}
.cid-uNTMOvmGxU .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uNTMOvmGxU .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uNTMOvmGxU .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uNTMOvmGxU .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uNTMOvmGxU .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uNTMOvmGxU .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uNTMOvmGxU .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uNTMOvmGxU .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uNTMOvmGxU .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNTMOvmGxU .mbr-section-title {
  color: #000000;
}
.cid-uNTMOvmGxU .list {
  color: #131313;
}
.cid-uMAwirVEqA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #8e8e8e;
}
.cid-uMAwirVEqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAwirVEqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMAwirVEqA .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMAwirVEqA .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMAwirVEqA .container {
    padding: 0 16px;
  }
}
.cid-uMAwirVEqA .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uMAwirVEqA .row {
    margin: 0;
  }
}
.cid-uMAwirVEqA .row .card {
  position: relative;
  padding: 0;
}
.cid-uMAwirVEqA .decor-wrapper_1 {
  height: 30px;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
}
.cid-uMAwirVEqA .decor-wrapper_2 {
  height: 30px;
  background-color: #f4f669;
}
.cid-uMAwirVEqA .decor-wrapper_3 {
  height: 30px;
  background-color: #000000;
}
.cid-uMAwirVEqA .title-wrapper {
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uMAwirVEqA .title-wrapper {
    margin: 0 10px;
  }
}
.cid-uMAwirVEqA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNTOUgugXd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNTOUgugXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTOUgugXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTOUgugXd .row {
  justify-content: space-between;
}
.cid-uNTOUgugXd .card {
  justify-content: center;
}
.cid-uNTOUgugXd .title-wrapper {
  margin-bottom: 40px;
}
.cid-uNTOUgugXd .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uNTOUgugXd .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNTOUgugXd .mbr-section-btn .btn::after,
.cid-uNTOUgugXd .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uNTOUgugXd .mbr-section-btn .btn:hover,
.cid-uNTOUgugXd .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uNTOUgugXd .mbr-section-btn .btn:hover::after,
.cid-uNTOUgugXd .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uNTOUgugXd .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNTOUgugXd .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uNTOUgugXd .image-wrapper img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNTOUgugXd .image-wrapper img {
    height: 350px;
  }
}
.cid-uNTOUgugXd .text-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-uNTOUgugXd .text-wrapper {
    padding-left: 0;
  }
}
.cid-uNTOUgugXd .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNTOUgugXd .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uNTOUgugXd .mbr-section-title {
  color: #ffffff;
}
.cid-uNTOUgugXd .mbr-tag {
  color: #ffffff;
}
.cid-uNTOUgugXd .mbr-text {
  color: #c7c7c7;
}
.cid-uNTOUgugXd .mbr-text,
.cid-uNTOUgugXd .text-wrap,
.cid-uNTOUgugXd .mbr-section-btn {
  color: #000000;
}
.cid-uNTOUgugXd .mbr-section-title,
.cid-uNTOUgugXd .main-btn {
  color: #000000;
}
.cid-uMAvwnHfVI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #938a8a;
}
@media (max-width: 992px) {
  .cid-uMAvwnHfVI .container {
    padding: 0 25px;
  }
}
.cid-uMAvwnHfVI .title-wrapper {
  margin: 25px 0;
}
.cid-uMAvwnHfVI .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMAvwnHfVI .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-uMAvwnHfVI .text-wrapper .mbr-section-subtitle {
  margin: 25px 0;
}
.cid-uMAvwnHfVI .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMAvwnHfVI .mbr-section-title {
  color: #ffffff;
}
.cid-uMAvwnHfVI .mbr-section-subtitle {
  color: #000000;
}
.cid-uMAvwnHfVI .mbr-text {
  color: #ffffff;
}
.cid-uMw8nkC9s7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uMw8nkC9s7 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uMw8nkC9s7 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uMw8nkC9s7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMw8nkC9s7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTQ3h6Lmg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNTQ3h6Lmg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTQ3h6Lmg .container {
  max-width: 1300px;
}
.cid-uNTQ3h6Lmg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTQ3h6Lmg .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNTQ3h6Lmg .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-uNTQ3h6Lmg .row {
  background: #8e8e8e;
}
@media (max-width: 991px) {
  .cid-uNTQ3h6Lmg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNTQ3h6Lmg .image-wrapper {
  padding: 0;
}
.cid-uNTQ3h6Lmg .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNTQ3h6Lmg .mbr-section-title {
  color: #ffffff;
}
.cid-uNTQ3h6Lmg .mbr-text,
.cid-uNTQ3h6Lmg .mbr-section-btn {
  color: #ffffff;
}
.cid-uNTQ3h6Lmg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMwaUNQksg {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-uMwaUNQksg .container-fluid {
  padding: 0 2rem;
}
.cid-uMwaUNQksg .mbr-section-title {
  margin-bottom: 1rem;
  color: #8e8e8e;
}
.cid-uMwaUNQksg .mbr-title {
  padding: 0 1rem;
}
.cid-uMwaUNQksg .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-uMwaUNQksg .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uMwaUNQksg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0041a1, #ff5740);
  display: inline-block;
}
.cid-uMwaUNQksg .image-wrap {
  width: 100%;
}
.cid-uMwaUNQksg .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-uMwaUNQksg .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-uMwaUNQksg .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uMwaUNQksg .container-fluid {
    padding: 0rem;
  }
}
.cid-uMwaUNQksg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMwaUNQksg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTPYtgCp2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNTPYtgCp2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNTPYtgCp2 .container {
  max-width: 1300px;
}
.cid-uNTPYtgCp2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNTPYtgCp2 .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNTPYtgCp2 .text-wrapper {
    padding: 3rem;
  }
}
.cid-uNTPYtgCp2 .row {
  background: #000000;
}
.cid-uNTPYtgCp2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uNTPYtgCp2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNTPYtgCp2 .image-wrapper {
  padding: 0;
}
.cid-uNTPYtgCp2 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNTPYtgCp2 .mbr-section-title {
  color: #ffffff;
}
.cid-uNTPYtgCp2 .mbr-text,
.cid-uNTPYtgCp2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uNTPYtgCp2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMuUlUJrEF {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uMuUlUJrEF .mbr-text {
  color: #000000;
}
.cid-uMuUlUJrEF .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uMuUlUJrEF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uMxZ86Xnoj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uMxZ86Xnoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMxZ86Xnoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMxZ86Xnoj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMxZ86Xnoj .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uMxZ86Xnoj .container {
    padding: 0 25px;
  }
}
.cid-uMxZ86Xnoj .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uMxZ86Xnoj .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-uMxZ86Xnoj .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-uMxZ86Xnoj .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uMxZ86Xnoj .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uMxZ86Xnoj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMAw5BBPSZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uMAw5BBPSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAw5BBPSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMAw5BBPSZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .container {
    padding: 0 16px;
  }
}
.cid-uMAw5BBPSZ .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .row {
    margin: 0 10px;
  }
}
.cid-uMAw5BBPSZ .row .card {
  position: relative;
  padding: 0;
}
.cid-uMAw5BBPSZ .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #000000;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uMAw5BBPSZ .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uMAw5BBPSZ .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #000000;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uMAw5BBPSZ .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .row .card .icon-decor {
    display: none;
  }
}
.cid-uMAw5BBPSZ .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .title-wrapper {
    width: 100%;
  }
}
.cid-uMAw5BBPSZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uMAw5BBPSZ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uMAw5BBPSZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMAw5BBPSZ .mbr-section-title {
  color: #000000;
}
.cid-uMAw5BBPSZ .mbr-text {
  color: #000000;
}
.cid-uNUaKMlrC5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUaKMlrC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUaKMlrC5 .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-uNUaKMlrC5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uNUaKMlrC5 .container {
    padding: 0 12px;
  }
}
.cid-uNUaKMlrC5 .row {
  justify-content: center;
}
.cid-uNUaKMlrC5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUaKMlrC5 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uNUaKMlrC5 .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #8e8e8e;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNUaKMlrC5 .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uNUaKMlrC5 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-uNUaKMlrC5 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uNUaKMlrC5 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUaKMlrC5 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uNUaKMlrC5 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uNUaKMlrC5 .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-uNUaKMlrC5 .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-uNUaKMlrC5 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUaKMlrC5 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uNUaKMlrC5 .panel-title-edit {
  color: #ffffff;
}
.cid-uNUaKMlrC5 .panel-text {
  color: #201f1f;
}
.cid-uMAPxo4OsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uMAPxo4OsA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAPxo4OsA .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-uMAPxo4OsA .container {
    padding: 0 16px;
  }
}
.cid-uMAPxo4OsA .card {
  justify-content: center;
}
.cid-uMAPxo4OsA .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uMAPxo4OsA .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMAPxo4OsA .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uMAPxo4OsA .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uMAPxo4OsA .mbr-section-title {
  color: #000000;
}
.cid-uMAPxo4OsA .mbr-text {
  color: #000000;
}
.cid-uMAPxo4OsA .mbr-desc {
  color: #000000;
}
.cid-uMAPxo4OsA .mbr-text,
.cid-uMAPxo4OsA .mbr-section-btn {
  color: #ffffff;
}
.cid-uMAMmv5xd6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uMAMmv5xd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAMmv5xd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMAMmv5xd6 .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uMAMmv5xd6 .card-wrapper {
  padding: 54px;
  border: 3px dashed #000000;
}
@media (max-width: 992px) {
  .cid-uMAMmv5xd6 .card-wrapper {
    padding: 22px;
  }
}
.cid-uMAMmv5xd6 .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uMAMmv5xd6 .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uMAMmv5xd6 .mbr-label {
  color: #ffffff;
  text-align: center;
}
.cid-uMuVHjfX3E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uMuVHjfX3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMuVHjfX3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMuVHjfX3E .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uMuVHjfX3E .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uMuVHjfX3E .content-wrap .row {
  justify-content: center;
}
.cid-uMuVHjfX3E .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMuVHjfX3E .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMuVHjfX3E .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uMuVHjfX3E .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uMuVHjfX3E .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uMuVHjfX3E .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMuVHjfX3E .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMuVHjfX3E .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMuVHjfX3E .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMuVHjfX3E .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMuVHjfX3E .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMuVHjfX3E .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMuVHjfX3E .nav-wrapper .list .item-wrap:hover,
.cid-uMuVHjfX3E .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMuVHjfX3E .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMuVHjfX3E .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMuVHjfX3E .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMuVHjfX3E .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMuVHjfX3E .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMuVHjfX3E .contacts-wrapper .list .item-wrap:hover,
.cid-uMuVHjfX3E .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMuVHjfX3E .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMuVHjfX3E .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMuVHjfX3E .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMuVHjfX3E .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMuVHjfX3E .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uMuVHjfX3E .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMuVHjfX3E .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMuVHjfX3E .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uMuVHjfX3E .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uMuVHjfX3E .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uMuVHjfX3E .mbr-section-title {
  color: #ed463f;
}
.cid-uMuVHjfX3E .mbr-section-subtitle {
  color: #000000;
}
.cid-uMuVHjfX3E .list {
  color: #404349;
}
.cid-uMuVHjfX3E .list,
.cid-uMuVHjfX3E .item-wrap {
  color: #000000;
}
.cid-uMz8weLrNK .navbar-dropdown {
  position: relative !important;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMz8weLrNK .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover,
.cid-uMz8weLrNK .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover span {
  color: white;
}
.cid-uMz8weLrNK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMz8weLrNK .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMz8weLrNK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMz8weLrNK .nav-link {
  position: relative;
}
.cid-uMz8weLrNK .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .container {
    flex-wrap: nowrap;
  }
}
.cid-uMz8weLrNK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMz8weLrNK .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-menu,
.cid-uMz8weLrNK .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uMz8weLrNK .nav-item:focus,
.cid-uMz8weLrNK .nav-link:focus {
  outline: none;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMz8weLrNK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMz8weLrNK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK .navbar.opened {
  transition: all 0.3s;
}
.cid-uMz8weLrNK .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uMz8weLrNK .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uMz8weLrNK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMz8weLrNK .navbar.collapsed {
  justify-content: center;
}
.cid-uMz8weLrNK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMz8weLrNK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMz8weLrNK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMz8weLrNK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMz8weLrNK .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-uMz8weLrNK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMz8weLrNK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMz8weLrNK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMz8weLrNK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMz8weLrNK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMz8weLrNK .navbar.navbar-short {
  min-height: 96px;
}
.cid-uMz8weLrNK .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uMz8weLrNK .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item.active,
.cid-uMz8weLrNK .dropdown-item:active {
  background-color: transparent;
}
.cid-uMz8weLrNK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMz8weLrNK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMz8weLrNK ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMz8weLrNK ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uMz8weLrNK .navbar-buttons {
  text-align: center;
}
.cid-uMz8weLrNK .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uMz8weLrNK .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uMz8weLrNK .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMz8weLrNK button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMz8weLrNK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar {
    height: 70px;
  }
  .cid-uMz8weLrNK .navbar.opened {
    height: auto;
  }
  .cid-uMz8weLrNK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMz8weLrNK .navbar-nav {
  margin: 0 auto;
}
.cid-uMz8weLrNK .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMz8weLrNK .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMz8weLrNK .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMz8weLrNK .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMz8weLrNK .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uMz8weLrNK .content-wrap {
  min-height: 90px;
}
.cid-uNUcQ6g7bV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUcQ6g7bV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUcQ6g7bV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUcQ6g7bV .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uNUcQ6g7bV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uNUcQ6g7bV .container {
    padding: 0 26px;
  }
}
.cid-uNUcQ6g7bV .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNUcQ6g7bV .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uNUcQ6g7bV .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uNUcQ6g7bV .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUcQ6g7bV .image-wrapper img {
    height: 300px;
  }
}
.cid-uNUcQ6g7bV .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uNUcQ6g7bV .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uNUcQ6g7bV .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUcQ6g7bV .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uNUcQ6g7bV .mbr-section-title {
  color: #ffffff;
}
.cid-uNUcQ6g7bV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUcQ6g7bV .mbr-text {
  color: #cacaca;
}
.cid-uMv3PBPN5I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #8e8e8e;
}
.cid-uMv3PBPN5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv3PBPN5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv3PBPN5I .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uMv3PBPN5I .container-fluid {
    padding: 0 12px;
  }
}
.cid-uMv3PBPN5I .container-fluid .row {
  padding: 0;
}
.cid-uMv3PBPN5I .row {
  border: 3px solid #8e8e8e;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uMv3PBPN5I .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uMv3PBPN5I .card {
    padding: 48px 20px;
  }
}
.cid-uMv3PBPN5I .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMv3PBPN5I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uMv3PTpTJO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uMv3PTpTJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv3PTpTJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv3PTpTJO .row {
  justify-content: center;
}
.cid-uMv3PTpTJO .main-content {
  margin: 0;
}
.cid-uMv3PTpTJO .card {
  padding: 0;
}
.cid-uMv3PTpTJO .google-map iframe {
  height: 1000px;
  margin: 10px 0;
}
@media (max-width: 1440px) {
  .cid-uMv3PTpTJO .google-map iframe {
    height: 800px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMv3PTpTJO .google-map iframe {
    height: 350px;
  }
}
.cid-uMv3PUYrxN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uMv3PUYrxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv3PUYrxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv3PUYrxN .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uMv3PUYrxN .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uMv3PUYrxN .content-wrap .row {
  justify-content: center;
}
.cid-uMv3PUYrxN .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv3PUYrxN .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv3PUYrxN .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uMv3PUYrxN .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uMv3PUYrxN .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uMv3PUYrxN .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMv3PUYrxN .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv3PUYrxN .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv3PUYrxN .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv3PUYrxN .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMv3PUYrxN .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMv3PUYrxN .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMv3PUYrxN .nav-wrapper .list .item-wrap:hover,
.cid-uMv3PUYrxN .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMv3PUYrxN .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv3PUYrxN .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv3PUYrxN .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv3PUYrxN .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMv3PUYrxN .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMv3PUYrxN .contacts-wrapper .list .item-wrap:hover,
.cid-uMv3PUYrxN .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMv3PUYrxN .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMv3PUYrxN .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv3PUYrxN .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv3PUYrxN .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv3PUYrxN .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uMv3PUYrxN .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMv3PUYrxN .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMv3PUYrxN .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uMv3PUYrxN .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uMv3PUYrxN .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uMv3PUYrxN .mbr-section-title {
  color: #ed463f;
}
.cid-uMv3PUYrxN .mbr-section-subtitle {
  color: #000000;
}
.cid-uMv3PUYrxN .list {
  color: #404349;
}
.cid-uMv3PUYrxN .list,
.cid-uMv3PUYrxN .item-wrap {
  color: #000000;
}
.cid-uMz8weLrNK .navbar-dropdown {
  position: relative !important;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMz8weLrNK .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover,
.cid-uMz8weLrNK .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item:hover span {
  color: white;
}
.cid-uMz8weLrNK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMz8weLrNK .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMz8weLrNK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMz8weLrNK .nav-link {
  position: relative;
}
.cid-uMz8weLrNK .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .container {
    flex-wrap: nowrap;
  }
}
.cid-uMz8weLrNK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMz8weLrNK .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-menu,
.cid-uMz8weLrNK .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uMz8weLrNK .nav-item:focus,
.cid-uMz8weLrNK .nav-link:focus {
  outline: none;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMz8weLrNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMz8weLrNK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMz8weLrNK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMz8weLrNK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK .navbar.opened {
  transition: all 0.3s;
}
.cid-uMz8weLrNK .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uMz8weLrNK .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uMz8weLrNK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMz8weLrNK .navbar.collapsed {
  justify-content: center;
}
.cid-uMz8weLrNK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMz8weLrNK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMz8weLrNK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMz8weLrNK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMz8weLrNK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMz8weLrNK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMz8weLrNK .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-uMz8weLrNK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMz8weLrNK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMz8weLrNK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMz8weLrNK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMz8weLrNK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMz8weLrNK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMz8weLrNK .navbar.navbar-short {
  min-height: 96px;
}
.cid-uMz8weLrNK .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uMz8weLrNK .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMz8weLrNK .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMz8weLrNK .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .dropdown-item.active,
.cid-uMz8weLrNK .dropdown-item:active {
  background-color: transparent;
}
.cid-uMz8weLrNK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMz8weLrNK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMz8weLrNK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMz8weLrNK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMz8weLrNK ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMz8weLrNK ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uMz8weLrNK .navbar-buttons {
  text-align: center;
}
.cid-uMz8weLrNK .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uMz8weLrNK .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uMz8weLrNK .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMz8weLrNK button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMz8weLrNK button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMz8weLrNK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMz8weLrNK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMz8weLrNK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMz8weLrNK .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-uMz8weLrNK .navbar {
    height: 70px;
  }
  .cid-uMz8weLrNK .navbar.opened {
    height: auto;
  }
  .cid-uMz8weLrNK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMz8weLrNK .navbar-nav {
  margin: 0 auto;
}
.cid-uMz8weLrNK .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMz8weLrNK .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMz8weLrNK .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMz8weLrNK .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uMz8weLrNK .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uMz8weLrNK .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMz8weLrNK .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMz8weLrNK .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uMz8weLrNK .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uMz8weLrNK .content-wrap {
  min-height: 90px;
}
.cid-uNUdwxRJCY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uNUdwxRJCY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUdwxRJCY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUdwxRJCY .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uNUdwxRJCY .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uNUdwxRJCY .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNUdwxRJCY .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uNUdwxRJCY .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNUdwxRJCY .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uNUdwxRJCY .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUdwxRJCY .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uNUdwxRJCY .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uNUdwxRJCY .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uNUdwxRJCY .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uNUdwxRJCY .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uNUdwxRJCY .mbr-section-title {
  color: #050f0f;
}
.cid-uNUdwxRJCY .mbr-text {
  color: #050f0f;
}
.cid-uMv4rQNhMc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #938a8a;
}
.cid-uMv4rQNhMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv4rQNhMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv4rQNhMc .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uMv4rQNhMc .container-fluid {
    padding: 0 12px;
  }
}
.cid-uMv4rQNhMc .container-fluid .row {
  padding: 0;
}
.cid-uMv4rQNhMc .row {
  border: 3px solid #938a8a;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uMv4rQNhMc .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uMv4rQNhMc .card {
    padding: 48px 20px;
  }
}
.cid-uMv4rQNhMc .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMv4rQNhMc .mbr-section-title {
  color: #181818;
  text-align: left;
}
.cid-uMv4rQNhMc .mbr-section-title DIV {
  text-align: left;
}
.cid-uMv4rSsq58 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uMv4rSsq58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv4rSsq58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv4rSsq58 .row {
  justify-content: center;
}
.cid-uMv4rSsq58 .main-content {
  margin: 0;
}
.cid-uMv4rSsq58 .card {
  padding: 0;
}
.cid-uMv4rSsq58 .google-map iframe {
  height: 1000px;
  margin: 10px 0;
}
@media (max-width: 1440px) {
  .cid-uMv4rSsq58 .google-map iframe {
    height: 800px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMv4rSsq58 .google-map iframe {
    height: 350px;
  }
}
.cid-uMv4rTekmL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uMv4rTekmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMv4rTekmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMv4rTekmL .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uMv4rTekmL .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uMv4rTekmL .content-wrap .row {
  justify-content: center;
}
.cid-uMv4rTekmL .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv4rTekmL .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv4rTekmL .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uMv4rTekmL .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uMv4rTekmL .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uMv4rTekmL .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uMv4rTekmL .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv4rTekmL .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv4rTekmL .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv4rTekmL .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMv4rTekmL .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMv4rTekmL .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMv4rTekmL .nav-wrapper .list .item-wrap:hover,
.cid-uMv4rTekmL .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMv4rTekmL .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv4rTekmL .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv4rTekmL .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv4rTekmL .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uMv4rTekmL .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uMv4rTekmL .contacts-wrapper .list .item-wrap:hover,
.cid-uMv4rTekmL .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uMv4rTekmL .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMv4rTekmL .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMv4rTekmL .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uMv4rTekmL .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uMv4rTekmL .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uMv4rTekmL .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uMv4rTekmL .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uMv4rTekmL .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uMv4rTekmL .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uMv4rTekmL .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uMv4rTekmL .mbr-section-title {
  color: #ed463f;
}
.cid-uMv4rTekmL .mbr-section-subtitle {
  color: #000000;
}
.cid-uMv4rTekmL .list {
  color: #404349;
}
.cid-uMv4rTekmL .list,
.cid-uMv4rTekmL .item-wrap {
  color: #000000;
}
.cid-uNUyG1aZZa .navbar-dropdown {
  position: relative !important;
}
.cid-uNUyG1aZZa .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-uNUyG1aZZa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNUyG1aZZa .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .dropdown-item:hover,
.cid-uNUyG1aZZa .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .dropdown-item:hover span {
  color: white;
}
.cid-uNUyG1aZZa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNUyG1aZZa .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNUyG1aZZa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNUyG1aZZa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNUyG1aZZa .nav-link {
  position: relative;
}
.cid-uNUyG1aZZa .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uNUyG1aZZa .container {
    flex-wrap: nowrap;
  }
}
.cid-uNUyG1aZZa .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uNUyG1aZZa .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .dropdown-menu,
.cid-uNUyG1aZZa .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uNUyG1aZZa .nav-item:focus,
.cid-uNUyG1aZZa .nav-link:focus {
  outline: none;
}
.cid-uNUyG1aZZa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNUyG1aZZa .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uNUyG1aZZa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNUyG1aZZa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNUyG1aZZa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNUyG1aZZa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNUyG1aZZa .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUyG1aZZa .navbar.opened {
  transition: all 0.3s;
}
.cid-uNUyG1aZZa .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uNUyG1aZZa .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uNUyG1aZZa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNUyG1aZZa .navbar.collapsed {
  justify-content: center;
}
.cid-uNUyG1aZZa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNUyG1aZZa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNUyG1aZZa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNUyG1aZZa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNUyG1aZZa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNUyG1aZZa .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-uNUyG1aZZa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNUyG1aZZa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNUyG1aZZa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNUyG1aZZa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNUyG1aZZa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNUyG1aZZa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNUyG1aZZa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNUyG1aZZa .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-uNUyG1aZZa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNUyG1aZZa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNUyG1aZZa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNUyG1aZZa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uNUyG1aZZa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNUyG1aZZa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNUyG1aZZa .navbar.navbar-short {
  min-height: 96px;
}
.cid-uNUyG1aZZa .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uNUyG1aZZa .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uNUyG1aZZa .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNUyG1aZZa .navbar-brand .navbar-caption:hover,
.cid-uNUyG1aZZa .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNUyG1aZZa .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uNUyG1aZZa .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .dropdown-item.active,
.cid-uNUyG1aZZa .dropdown-item:active {
  background-color: transparent;
}
.cid-uNUyG1aZZa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNUyG1aZZa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNUyG1aZZa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNUyG1aZZa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uNUyG1aZZa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uNUyG1aZZa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uNUyG1aZZa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNUyG1aZZa ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uNUyG1aZZa ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uNUyG1aZZa .navbar-buttons {
  text-align: center;
}
.cid-uNUyG1aZZa .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uNUyG1aZZa .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uNUyG1aZZa .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uNUyG1aZZa button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUyG1aZZa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNUyG1aZZa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uNUyG1aZZa button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUyG1aZZa button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUyG1aZZa button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uNUyG1aZZa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUyG1aZZa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNUyG1aZZa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNUyG1aZZa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUyG1aZZa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uNUyG1aZZa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNUyG1aZZa .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-uNUyG1aZZa .navbar {
    height: 70px;
  }
  .cid-uNUyG1aZZa .navbar.opened {
    height: auto;
  }
  .cid-uNUyG1aZZa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNUyG1aZZa .navbar-nav {
  margin: 0 auto;
}
.cid-uNUyG1aZZa .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uNUyG1aZZa .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uNUyG1aZZa .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uNUyG1aZZa .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uNUyG1aZZa .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uNUyG1aZZa .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uNUyG1aZZa .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uNUyG1aZZa .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uNUyG1aZZa .navbar {
    justify-content: flex-start !important;
  }
  .cid-uNUyG1aZZa .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uNUyG1aZZa .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uNUyG1aZZa .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uNUyG1aZZa .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uNUyG1aZZa .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uNUyG1aZZa .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uNUyG1aZZa .content-wrap {
  min-height: 90px;
}
.cid-uNUyG1MbGQ {
  background-color: #ebeced;
}
.cid-uNUyG1MbGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG1MbGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG1MbGQ .container-fluid {
  padding: 0;
}
.cid-uNUyG1MbGQ .row {
  padding: 0;
}
.cid-uNUyG1MbGQ .title-wrapper {
  padding: 0 2rem;
}
.cid-uNUyG1MbGQ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-uNUyG1MbGQ .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-uNUyG1MbGQ .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-uNUyG1MbGQ .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-uNUyG1MbGQ .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUyG1MbGQ .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uNUyG1MbGQ .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUyG1MbGQ .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uNUyG1MbGQ .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUyG1MbGQ .title-wrapper img {
    max-height: 300px;
  }
}
.cid-uNUyG1MbGQ .mbr-section-title {
  color: #1c314e;
}
.cid-uNUyG1MbGQ .mbr-section-subtitle {
  color: #1c314e;
  text-align: center;
}
.cid-uNUyG1MbGQ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uNUyG1MbGQ .mbr-section-title,
.cid-uNUyG1MbGQ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNUyG2mLRB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e6e6;
}
.cid-uNUyG2mLRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG2mLRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG2mLRB .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .container {
    padding: 0 6px;
  }
}
.cid-uNUyG2mLRB .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uNUyG2mLRB .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uNUyG2mLRB .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uNUyG2mLRB .row {
    padding: 0;
  }
}
.cid-uNUyG2mLRB .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uNUyG2mLRB .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uNUyG2mLRB .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uNUyG2mLRB .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uNUyG2mLRB .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uNUyG2mLRB .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uNUyG2mLRB .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uNUyG2mLRB .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uNUyG2mLRB .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUyG2mLRB .mbr-section-title {
  color: #000000;
}
.cid-uNUyG2mLRB .list {
  color: #131313;
}
.cid-uNUyG2KnHl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #8e8e8e;
}
.cid-uNUyG2KnHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG2KnHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG2KnHl .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUyG2KnHl .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG2KnHl .container {
    padding: 0 16px;
  }
}
.cid-uNUyG2KnHl .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uNUyG2KnHl .row {
    margin: 0;
  }
}
.cid-uNUyG2KnHl .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUyG2KnHl .decor-wrapper_1 {
  height: 30px;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
}
.cid-uNUyG2KnHl .decor-wrapper_2 {
  height: 30px;
  background-color: #f4f669;
}
.cid-uNUyG2KnHl .decor-wrapper_3 {
  height: 30px;
  background-color: #000000;
}
.cid-uNUyG2KnHl .title-wrapper {
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUyG2KnHl .title-wrapper {
    margin: 0 10px;
  }
}
.cid-uNUyG2KnHl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUyG38HKy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUyG38HKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG38HKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG38HKy .row {
  justify-content: space-between;
}
.cid-uNUyG38HKy .card {
  justify-content: center;
}
.cid-uNUyG38HKy .title-wrapper {
  margin-bottom: 40px;
}
.cid-uNUyG38HKy .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uNUyG38HKy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUyG38HKy .mbr-section-btn .btn::after,
.cid-uNUyG38HKy .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uNUyG38HKy .mbr-section-btn .btn:hover,
.cid-uNUyG38HKy .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uNUyG38HKy .mbr-section-btn .btn:hover::after,
.cid-uNUyG38HKy .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uNUyG38HKy .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNUyG38HKy .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uNUyG38HKy .image-wrapper img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUyG38HKy .image-wrapper img {
    height: 350px;
  }
}
.cid-uNUyG38HKy .text-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-uNUyG38HKy .text-wrapper {
    padding-left: 0;
  }
}
.cid-uNUyG38HKy .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUyG38HKy .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uNUyG38HKy .mbr-section-title {
  color: #ffffff;
}
.cid-uNUyG38HKy .mbr-tag {
  color: #ffffff;
}
.cid-uNUyG38HKy .mbr-text {
  color: #c7c7c7;
}
.cid-uNUyG38HKy .mbr-text,
.cid-uNUyG38HKy .text-wrap,
.cid-uNUyG38HKy .mbr-section-btn {
  color: #000000;
}
.cid-uNUyG38HKy .mbr-section-title,
.cid-uNUyG38HKy .main-btn {
  color: #000000;
}
.cid-uNUyG3F4Hu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #938a8a;
}
@media (max-width: 992px) {
  .cid-uNUyG3F4Hu .container {
    padding: 0 25px;
  }
}
.cid-uNUyG3F4Hu .title-wrapper {
  margin: 25px 0;
}
.cid-uNUyG3F4Hu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNUyG3F4Hu .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-uNUyG3F4Hu .text-wrapper .mbr-section-subtitle {
  margin: 25px 0;
}
.cid-uNUyG3F4Hu .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUyG3F4Hu .mbr-section-title {
  color: #ffffff;
}
.cid-uNUyG3F4Hu .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUyG3F4Hu .mbr-text {
  color: #ffffff;
}
.cid-uNUyG48RWO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uNUyG48RWO .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uNUyG48RWO .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uNUyG48RWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG48RWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG4Nwvw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUyG4Nwvw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG4Nwvw .container {
  max-width: 1300px;
}
.cid-uNUyG4Nwvw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG4Nwvw .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUyG4Nwvw .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-uNUyG4Nwvw .row {
  background: #8e8e8e;
}
@media (max-width: 991px) {
  .cid-uNUyG4Nwvw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUyG4Nwvw .image-wrapper {
  padding: 0;
}
.cid-uNUyG4Nwvw .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUyG4Nwvw .mbr-section-title {
  color: #ffffff;
}
.cid-uNUyG4Nwvw .mbr-text,
.cid-uNUyG4Nwvw .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUyG4Nwvw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUyG6aQUr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUyG6aQUr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG6aQUr .container {
  max-width: 1300px;
}
.cid-uNUyG6aQUr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG6aQUr .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUyG6aQUr .text-wrapper {
    padding: 3rem;
  }
}
.cid-uNUyG6aQUr .row {
  background: #000000;
}
.cid-uNUyG6aQUr .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uNUyG6aQUr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUyG6aQUr .image-wrapper {
  padding: 0;
}
.cid-uNUyG6aQUr .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUyG6aQUr .mbr-section-title {
  color: #ffffff;
}
.cid-uNUyG6aQUr .mbr-text,
.cid-uNUyG6aQUr .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUyG6aQUr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUyG6GWKn {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uNUyG6GWKn .mbr-text {
  color: #000000;
}
.cid-uNUyG6GWKn .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uNUyG6GWKn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uNUyG5my39 {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-uNUyG5my39 .container-fluid {
  padding: 0 2rem;
}
.cid-uNUyG5my39 .mbr-section-title {
  margin-bottom: 1rem;
  color: #8e8e8e;
}
.cid-uNUyG5my39 .mbr-title {
  padding: 0 1rem;
}
.cid-uNUyG5my39 .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-uNUyG5my39 .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNUyG5my39 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0041a1, #ff5740);
  display: inline-block;
}
.cid-uNUyG5my39 .image-wrap {
  width: 100%;
}
.cid-uNUyG5my39 .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-uNUyG5my39 .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-uNUyG5my39 .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uNUyG5my39 .container-fluid {
    padding: 0rem;
  }
}
.cid-uNUyG5my39 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG5my39 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG7Gjak {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNUyG7Gjak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG7Gjak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG7Gjak .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .container {
    padding: 0 16px;
  }
}
.cid-uNUyG7Gjak .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .row {
    margin: 0 10px;
  }
}
.cid-uNUyG7Gjak .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUyG7Gjak .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #000000;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uNUyG7Gjak .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uNUyG7Gjak .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #000000;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uNUyG7Gjak .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .row .card .icon-decor {
    display: none;
  }
}
.cid-uNUyG7Gjak .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .title-wrapper {
    width: 100%;
  }
}
.cid-uNUyG7Gjak .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUyG7Gjak .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNUyG7Gjak .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUyG7Gjak .mbr-section-title {
  color: #000000;
}
.cid-uNUyG7Gjak .mbr-text {
  color: #000000;
}
.cid-uNUyG77jcJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUyG77jcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG77jcJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG77jcJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uNUyG77jcJ .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uNUyG77jcJ .container {
    padding: 0 25px;
  }
}
.cid-uNUyG77jcJ .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uNUyG77jcJ .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-uNUyG77jcJ .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-uNUyG77jcJ .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uNUyG77jcJ .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uNUyG77jcJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUyG8auOx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUyG8auOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG8auOx .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-uNUyG8auOx .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uNUyG8auOx .container {
    padding: 0 12px;
  }
}
.cid-uNUyG8auOx .row {
  justify-content: center;
}
.cid-uNUyG8auOx .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUyG8auOx .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uNUyG8auOx .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #8e8e8e;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNUyG8auOx .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uNUyG8auOx .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-uNUyG8auOx .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uNUyG8auOx .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUyG8auOx .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uNUyG8auOx .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uNUyG8auOx .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-uNUyG8auOx .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-uNUyG8auOx .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUyG8auOx .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uNUyG8auOx .panel-title-edit {
  color: #ffffff;
}
.cid-uNUyG8auOx .panel-text {
  color: #201f1f;
}
.cid-uNUyG8YlgG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUyG8YlgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG8YlgG .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-uNUyG8YlgG .container {
    padding: 0 16px;
  }
}
.cid-uNUyG8YlgG .card {
  justify-content: center;
}
.cid-uNUyG8YlgG .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uNUyG8YlgG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNUyG8YlgG .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uNUyG8YlgG .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uNUyG8YlgG .mbr-section-title {
  color: #000000;
}
.cid-uNUyG8YlgG .mbr-text {
  color: #000000;
}
.cid-uNUyG8YlgG .mbr-desc {
  color: #000000;
}
.cid-uNUyG8YlgG .mbr-text,
.cid-uNUyG8YlgG .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUJpz3sYO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUJpz3sYO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUJpz3sYO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUJpz3sYO .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uNUJpz3sYO .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uNUJpz3sYO .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #181818;
}
@media (max-width: 992px) {
  .cid-uNUJpz3sYO .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uNUJpz3sYO .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uNUJpz3sYO .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uNUJpz3sYO .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUJpz3sYO .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uNUJpz3sYO .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uNUJpz3sYO .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uNUJpz3sYO .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUJpz3sYO .mbr-section-title {
  color: #19171c;
}
.cid-uNUJpz3sYO .panel-title {
  color: #19171c;
}
.cid-uNUJpz3sYO .panel-text {
  color: #000000;
}
.cid-uNUJpz3sYO .mbr-section-title,
.cid-uNUJpz3sYO .mbr-section-btn {
  color: #000000;
}
.cid-uNUJpz3sYO .panel-title-edit {
  color: #000000;
}
.cid-uNUyG9U3Mn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUyG9U3Mn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyG9U3Mn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyG9U3Mn .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uNUyG9U3Mn .card-wrapper {
  padding: 54px;
  border: 3px dashed #000000;
}
@media (max-width: 992px) {
  .cid-uNUyG9U3Mn .card-wrapper {
    padding: 22px;
  }
}
.cid-uNUyG9U3Mn .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uNUyG9U3Mn .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uNUyG9U3Mn .mbr-label {
  color: #ffffff;
  text-align: center;
}
.cid-uNUyGbfa9t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUyGbfa9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUyGbfa9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUyGbfa9t .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uNUyGbfa9t .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uNUyGbfa9t .content-wrap .row {
  justify-content: center;
}
.cid-uNUyGbfa9t .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUyGbfa9t .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUyGbfa9t .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uNUyGbfa9t .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uNUyGbfa9t .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uNUyGbfa9t .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUyGbfa9t .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUyGbfa9t .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUyGbfa9t .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUyGbfa9t .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUyGbfa9t .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUyGbfa9t .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUyGbfa9t .nav-wrapper .list .item-wrap:hover,
.cid-uNUyGbfa9t .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUyGbfa9t .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUyGbfa9t .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUyGbfa9t .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUyGbfa9t .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUyGbfa9t .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUyGbfa9t .contacts-wrapper .list .item-wrap:hover,
.cid-uNUyGbfa9t .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUyGbfa9t .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUyGbfa9t .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUyGbfa9t .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUyGbfa9t .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUyGbfa9t .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uNUyGbfa9t .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uNUyGbfa9t .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uNUyGbfa9t .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uNUyGbfa9t .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uNUyGbfa9t .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uNUyGbfa9t .mbr-section-title {
  color: #ed463f;
}
.cid-uNUyGbfa9t .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUyGbfa9t .list {
  color: #404349;
}
.cid-uNUyGbfa9t .list,
.cid-uNUyGbfa9t .item-wrap {
  color: #000000;
}
.cid-uNUAGTv3gD .navbar-dropdown {
  position: relative !important;
}
.cid-uNUAGTv3gD .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-uNUAGTv3gD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNUAGTv3gD .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .dropdown-item:hover,
.cid-uNUAGTv3gD .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .dropdown-item:hover span {
  color: white;
}
.cid-uNUAGTv3gD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNUAGTv3gD .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNUAGTv3gD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNUAGTv3gD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNUAGTv3gD .nav-link {
  position: relative;
}
.cid-uNUAGTv3gD .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uNUAGTv3gD .container {
    flex-wrap: nowrap;
  }
}
.cid-uNUAGTv3gD .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uNUAGTv3gD .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .dropdown-menu,
.cid-uNUAGTv3gD .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uNUAGTv3gD .nav-item:focus,
.cid-uNUAGTv3gD .nav-link:focus {
  outline: none;
}
.cid-uNUAGTv3gD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNUAGTv3gD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uNUAGTv3gD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNUAGTv3gD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNUAGTv3gD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNUAGTv3gD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNUAGTv3gD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUAGTv3gD .navbar.opened {
  transition: all 0.3s;
}
.cid-uNUAGTv3gD .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uNUAGTv3gD .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uNUAGTv3gD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNUAGTv3gD .navbar.collapsed {
  justify-content: center;
}
.cid-uNUAGTv3gD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNUAGTv3gD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNUAGTv3gD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNUAGTv3gD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNUAGTv3gD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNUAGTv3gD .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-uNUAGTv3gD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNUAGTv3gD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNUAGTv3gD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNUAGTv3gD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNUAGTv3gD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNUAGTv3gD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNUAGTv3gD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNUAGTv3gD .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-uNUAGTv3gD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNUAGTv3gD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNUAGTv3gD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNUAGTv3gD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uNUAGTv3gD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNUAGTv3gD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNUAGTv3gD .navbar.navbar-short {
  min-height: 96px;
}
.cid-uNUAGTv3gD .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uNUAGTv3gD .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uNUAGTv3gD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNUAGTv3gD .navbar-brand .navbar-caption:hover,
.cid-uNUAGTv3gD .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNUAGTv3gD .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uNUAGTv3gD .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .dropdown-item.active,
.cid-uNUAGTv3gD .dropdown-item:active {
  background-color: transparent;
}
.cid-uNUAGTv3gD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNUAGTv3gD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNUAGTv3gD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNUAGTv3gD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uNUAGTv3gD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uNUAGTv3gD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uNUAGTv3gD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNUAGTv3gD ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uNUAGTv3gD ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uNUAGTv3gD .navbar-buttons {
  text-align: center;
}
.cid-uNUAGTv3gD .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uNUAGTv3gD .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uNUAGTv3gD .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uNUAGTv3gD button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUAGTv3gD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNUAGTv3gD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uNUAGTv3gD button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUAGTv3gD button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUAGTv3gD button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uNUAGTv3gD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUAGTv3gD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNUAGTv3gD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNUAGTv3gD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUAGTv3gD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uNUAGTv3gD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNUAGTv3gD .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-uNUAGTv3gD .navbar {
    height: 70px;
  }
  .cid-uNUAGTv3gD .navbar.opened {
    height: auto;
  }
  .cid-uNUAGTv3gD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNUAGTv3gD .navbar-nav {
  margin: 0 auto;
}
.cid-uNUAGTv3gD .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uNUAGTv3gD .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uNUAGTv3gD .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uNUAGTv3gD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uNUAGTv3gD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uNUAGTv3gD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uNUAGTv3gD .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uNUAGTv3gD .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uNUAGTv3gD .navbar {
    justify-content: flex-start !important;
  }
  .cid-uNUAGTv3gD .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uNUAGTv3gD .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uNUAGTv3gD .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uNUAGTv3gD .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uNUAGTv3gD .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uNUAGTv3gD .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uNUAGTv3gD .content-wrap {
  min-height: 90px;
}
.cid-uNUAGU7zaY {
  background-color: #ebeced;
}
.cid-uNUAGU7zaY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGU7zaY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGU7zaY .container-fluid {
  padding: 0;
}
.cid-uNUAGU7zaY .row {
  padding: 0;
}
.cid-uNUAGU7zaY .title-wrapper {
  padding: 0 2rem;
}
.cid-uNUAGU7zaY .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-uNUAGU7zaY .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-uNUAGU7zaY .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-uNUAGU7zaY .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-uNUAGU7zaY .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUAGU7zaY .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uNUAGU7zaY .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUAGU7zaY .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uNUAGU7zaY .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUAGU7zaY .title-wrapper img {
    max-height: 300px;
  }
}
.cid-uNUAGU7zaY .mbr-section-title {
  color: #1c314e;
}
.cid-uNUAGU7zaY .mbr-section-subtitle {
  color: #1c314e;
  text-align: center;
}
.cid-uNUAGU7zaY .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uNUAGU7zaY .mbr-section-title,
.cid-uNUAGU7zaY .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNUAGUyF9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e6e6;
}
.cid-uNUAGUyF9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGUyF9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGUyF9m .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .container {
    padding: 0 6px;
  }
}
.cid-uNUAGUyF9m .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uNUAGUyF9m .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uNUAGUyF9m .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uNUAGUyF9m .row {
    padding: 0;
  }
}
.cid-uNUAGUyF9m .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uNUAGUyF9m .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uNUAGUyF9m .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uNUAGUyF9m .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uNUAGUyF9m .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uNUAGUyF9m .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uNUAGUyF9m .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uNUAGUyF9m .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uNUAGUyF9m .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAGUyF9m .mbr-section-title {
  color: #000000;
}
.cid-uNUAGUyF9m .list {
  color: #131313;
}
.cid-uNUAGUVVqk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #8e8e8e;
}
.cid-uNUAGUVVqk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGUVVqk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGUVVqk .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUAGUVVqk .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUAGUVVqk .container {
    padding: 0 16px;
  }
}
.cid-uNUAGUVVqk .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uNUAGUVVqk .row {
    margin: 0;
  }
}
.cid-uNUAGUVVqk .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUAGUVVqk .decor-wrapper_1 {
  height: 30px;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
}
.cid-uNUAGUVVqk .decor-wrapper_2 {
  height: 30px;
  background-color: #f4f669;
}
.cid-uNUAGUVVqk .decor-wrapper_3 {
  height: 30px;
  background-color: #000000;
}
.cid-uNUAGUVVqk .title-wrapper {
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAGUVVqk .title-wrapper {
    margin: 0 10px;
  }
}
.cid-uNUAGUVVqk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAGVnLOe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUAGVnLOe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGVnLOe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGVnLOe .row {
  justify-content: space-between;
}
.cid-uNUAGVnLOe .card {
  justify-content: center;
}
.cid-uNUAGVnLOe .title-wrapper {
  margin-bottom: 40px;
}
.cid-uNUAGVnLOe .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uNUAGVnLOe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUAGVnLOe .mbr-section-btn .btn::after,
.cid-uNUAGVnLOe .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uNUAGVnLOe .mbr-section-btn .btn:hover,
.cid-uNUAGVnLOe .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uNUAGVnLOe .mbr-section-btn .btn:hover::after,
.cid-uNUAGVnLOe .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uNUAGVnLOe .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNUAGVnLOe .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uNUAGVnLOe .image-wrapper img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUAGVnLOe .image-wrapper img {
    height: 350px;
  }
}
.cid-uNUAGVnLOe .text-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-uNUAGVnLOe .text-wrapper {
    padding-left: 0;
  }
}
.cid-uNUAGVnLOe .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAGVnLOe .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uNUAGVnLOe .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAGVnLOe .mbr-tag {
  color: #ffffff;
}
.cid-uNUAGVnLOe .mbr-text {
  color: #c7c7c7;
}
.cid-uNUAGVnLOe .mbr-text,
.cid-uNUAGVnLOe .text-wrap,
.cid-uNUAGVnLOe .mbr-section-btn {
  color: #000000;
}
.cid-uNUAGVnLOe .mbr-section-title,
.cid-uNUAGVnLOe .main-btn {
  color: #000000;
}
.cid-uNUAGVWKSb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #938a8a;
}
@media (max-width: 992px) {
  .cid-uNUAGVWKSb .container {
    padding: 0 25px;
  }
}
.cid-uNUAGVWKSb .title-wrapper {
  margin: 25px 0;
}
.cid-uNUAGVWKSb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNUAGVWKSb .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-uNUAGVWKSb .text-wrapper .mbr-section-subtitle {
  margin: 25px 0;
}
.cid-uNUAGVWKSb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUAGVWKSb .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAGVWKSb .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUAGVWKSb .mbr-text {
  color: #ffffff;
}
.cid-uNUAGWl8kx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uNUAGWl8kx .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uNUAGWl8kx .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uNUAGWl8kx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGWl8kx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGX2FE5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUAGX2FE5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGX2FE5 .container {
  max-width: 1300px;
}
.cid-uNUAGX2FE5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGX2FE5 .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUAGX2FE5 .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-uNUAGX2FE5 .row {
  background: #8e8e8e;
}
@media (max-width: 991px) {
  .cid-uNUAGX2FE5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUAGX2FE5 .image-wrapper {
  padding: 0;
}
.cid-uNUAGX2FE5 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUAGX2FE5 .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAGX2FE5 .mbr-text,
.cid-uNUAGX2FE5 .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUAGX2FE5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUAGXVRLg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUAGXVRLg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGXVRLg .container {
  max-width: 1300px;
}
.cid-uNUAGXVRLg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAGXVRLg .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUAGXVRLg .text-wrapper {
    padding: 3rem;
  }
}
.cid-uNUAGXVRLg .row {
  background: #000000;
}
.cid-uNUAGXVRLg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uNUAGXVRLg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUAGXVRLg .image-wrapper {
  padding: 0;
}
.cid-uNUAGXVRLg .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUAGXVRLg .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAGXVRLg .mbr-text,
.cid-uNUAGXVRLg .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUAGXVRLg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUAGYTyYl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uNUAGYTyYl .mbr-text {
  color: #000000;
}
.cid-uNUAGYTyYl .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uNUAGYTyYl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uNUAGZIXPR {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-uNUAGZIXPR .container-fluid {
  padding: 0 2rem;
}
.cid-uNUAGZIXPR .mbr-section-title {
  margin-bottom: 1rem;
  color: #8e8e8e;
}
.cid-uNUAGZIXPR .mbr-title {
  padding: 0 1rem;
}
.cid-uNUAGZIXPR .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-uNUAGZIXPR .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNUAGZIXPR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0041a1, #ff5740);
  display: inline-block;
}
.cid-uNUAGZIXPR .image-wrap {
  width: 100%;
}
.cid-uNUAGZIXPR .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-uNUAGZIXPR .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-uNUAGZIXPR .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uNUAGZIXPR .container-fluid {
    padding: 0rem;
  }
}
.cid-uNUAGZIXPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAGZIXPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAH0M7b6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNUAH0M7b6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH0M7b6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAH0M7b6 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .container {
    padding: 0 16px;
  }
}
.cid-uNUAH0M7b6 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .row {
    margin: 0 10px;
  }
}
.cid-uNUAH0M7b6 .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUAH0M7b6 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #000000;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uNUAH0M7b6 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uNUAH0M7b6 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #000000;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uNUAH0M7b6 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .row .card .icon-decor {
    display: none;
  }
}
.cid-uNUAH0M7b6 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .title-wrapper {
    width: 100%;
  }
}
.cid-uNUAH0M7b6 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAH0M7b6 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNUAH0M7b6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUAH0M7b6 .mbr-section-title {
  color: #000000;
}
.cid-uNUAH0M7b6 .mbr-text {
  color: #000000;
}
.cid-uNUAH1xCFs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUAH1xCFs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH1xCFs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAH1xCFs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uNUAH1xCFs .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAH1xCFs .container {
    padding: 0 25px;
  }
}
.cid-uNUAH1xCFs .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uNUAH1xCFs .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-uNUAH1xCFs .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-uNUAH1xCFs .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uNUAH1xCFs .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uNUAH1xCFs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAH2gqwH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUAH2gqwH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH2gqwH .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-uNUAH2gqwH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uNUAH2gqwH .container {
    padding: 0 12px;
  }
}
.cid-uNUAH2gqwH .row {
  justify-content: center;
}
.cid-uNUAH2gqwH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAH2gqwH .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uNUAH2gqwH .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #8e8e8e;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNUAH2gqwH .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uNUAH2gqwH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-uNUAH2gqwH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uNUAH2gqwH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUAH2gqwH .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uNUAH2gqwH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uNUAH2gqwH .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-uNUAH2gqwH .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-uNUAH2gqwH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUAH2gqwH .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uNUAH2gqwH .panel-title-edit {
  color: #ffffff;
}
.cid-uNUAH2gqwH .panel-text {
  color: #201f1f;
}
.cid-uNUAH3FsNp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUAH3FsNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH3FsNp .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-uNUAH3FsNp .container {
    padding: 0 16px;
  }
}
.cid-uNUAH3FsNp .card {
  justify-content: center;
}
.cid-uNUAH3FsNp .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uNUAH3FsNp .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNUAH3FsNp .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uNUAH3FsNp .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uNUAH3FsNp .mbr-section-title {
  color: #000000;
}
.cid-uNUAH3FsNp .mbr-text {
  color: #000000;
}
.cid-uNUAH3FsNp .mbr-desc {
  color: #000000;
}
.cid-uNUAH3FsNp .mbr-text,
.cid-uNUAH3FsNp .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUKkEqJ47 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUKkEqJ47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUKkEqJ47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUKkEqJ47 .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uNUKkEqJ47 .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uNUKkEqJ47 .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #181818;
}
@media (max-width: 992px) {
  .cid-uNUKkEqJ47 .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uNUKkEqJ47 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uNUKkEqJ47 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uNUKkEqJ47 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUKkEqJ47 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uNUKkEqJ47 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uNUKkEqJ47 .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uNUKkEqJ47 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUKkEqJ47 .mbr-section-title {
  color: #19171c;
}
.cid-uNUKkEqJ47 .panel-title {
  color: #19171c;
}
.cid-uNUKkEqJ47 .panel-text {
  color: #000000;
}
.cid-uNUKkEqJ47 .mbr-section-title,
.cid-uNUKkEqJ47 .mbr-section-btn {
  color: #000000;
}
.cid-uNUKkEqJ47 .panel-title-edit {
  color: #000000;
}
.cid-uNUAH4ccNZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUAH4ccNZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH4ccNZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAH4ccNZ .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uNUAH4ccNZ .card-wrapper {
  padding: 54px;
  border: 3px dashed #000000;
}
@media (max-width: 992px) {
  .cid-uNUAH4ccNZ .card-wrapper {
    padding: 22px;
  }
}
.cid-uNUAH4ccNZ .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uNUAH4ccNZ .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uNUAH4ccNZ .mbr-label {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAH4LOGn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUAH4LOGn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAH4LOGn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAH4LOGn .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uNUAH4LOGn .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uNUAH4LOGn .content-wrap .row {
  justify-content: center;
}
.cid-uNUAH4LOGn .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAH4LOGn .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAH4LOGn .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uNUAH4LOGn .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uNUAH4LOGn .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uNUAH4LOGn .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUAH4LOGn .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAH4LOGn .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAH4LOGn .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAH4LOGn .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUAH4LOGn .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUAH4LOGn .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAH4LOGn .nav-wrapper .list .item-wrap:hover,
.cid-uNUAH4LOGn .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUAH4LOGn .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAH4LOGn .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAH4LOGn .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAH4LOGn .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUAH4LOGn .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUAH4LOGn .contacts-wrapper .list .item-wrap:hover,
.cid-uNUAH4LOGn .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUAH4LOGn .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAH4LOGn .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAH4LOGn .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAH4LOGn .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAH4LOGn .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uNUAH4LOGn .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uNUAH4LOGn .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uNUAH4LOGn .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uNUAH4LOGn .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uNUAH4LOGn .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uNUAH4LOGn .mbr-section-title {
  color: #ed463f;
}
.cid-uNUAH4LOGn .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUAH4LOGn .list {
  color: #404349;
}
.cid-uNUAH4LOGn .list,
.cid-uNUAH4LOGn .item-wrap {
  color: #000000;
}
.cid-uNUAHw3r6N .navbar-dropdown {
  position: relative !important;
}
.cid-uNUAHw3r6N .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-uNUAHw3r6N .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNUAHw3r6N .dropdown-item {
  border: none;
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .dropdown-item:hover,
.cid-uNUAHw3r6N .dropdown-item:focus {
  background: #8e8e8e !important;
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .dropdown-item:hover span {
  color: white;
}
.cid-uNUAHw3r6N .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNUAHw3r6N .dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNUAHw3r6N .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNUAHw3r6N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNUAHw3r6N .nav-link {
  position: relative;
}
.cid-uNUAHw3r6N .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .cid-uNUAHw3r6N .container {
    flex-wrap: nowrap;
  }
}
.cid-uNUAHw3r6N .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uNUAHw3r6N .iconfont-wrapper:hover {
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .dropdown-menu,
.cid-uNUAHw3r6N .navbar.opened {
  background: #8e8e8e !important;
}
.cid-uNUAHw3r6N .nav-item:focus,
.cid-uNUAHw3r6N .nav-link:focus {
  outline: none;
}
.cid-uNUAHw3r6N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNUAHw3r6N .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uNUAHw3r6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNUAHw3r6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNUAHw3r6N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNUAHw3r6N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNUAHw3r6N .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e8e8e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUAHw3r6N .navbar.opened {
  transition: all 0.3s;
}
.cid-uNUAHw3r6N .navbar .dropdown-item {
  padding: 7px 3.2rem 7px 1.8rem;
  border-radius: 10px;
}
.cid-uNUAHw3r6N .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uNUAHw3r6N .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNUAHw3r6N .navbar.collapsed {
  justify-content: center;
}
.cid-uNUAHw3r6N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNUAHw3r6N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNUAHw3r6N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNUAHw3r6N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNUAHw3r6N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNUAHw3r6N .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-uNUAHw3r6N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNUAHw3r6N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNUAHw3r6N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNUAHw3r6N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNUAHw3r6N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNUAHw3r6N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNUAHw3r6N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNUAHw3r6N .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-uNUAHw3r6N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNUAHw3r6N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNUAHw3r6N .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNUAHw3r6N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uNUAHw3r6N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNUAHw3r6N .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNUAHw3r6N .navbar.navbar-short {
  min-height: 96px;
}
.cid-uNUAHw3r6N .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uNUAHw3r6N .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 !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uNUAHw3r6N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNUAHw3r6N .navbar-brand .navbar-caption:hover,
.cid-uNUAHw3r6N .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNUAHw3r6N .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uNUAHw3r6N .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .dropdown-item.active,
.cid-uNUAHw3r6N .dropdown-item:active {
  background-color: transparent;
}
.cid-uNUAHw3r6N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNUAHw3r6N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNUAHw3r6N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNUAHw3r6N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e8e8e;
  top: 3rem;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uNUAHw3r6N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uNUAHw3r6N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uNUAHw3r6N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNUAHw3r6N ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uNUAHw3r6N ul.navbar-nav {
    padding: 0;
    background-color: #8e8e8e;
    border: none;
  }
}
.cid-uNUAHw3r6N .navbar-buttons {
  text-align: center;
}
.cid-uNUAHw3r6N .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 5px 44px;
  min-height: auto;
}
.cid-uNUAHw3r6N .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uNUAHw3r6N .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uNUAHw3r6N button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #8e8e8e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uNUAHw3r6N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNUAHw3r6N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uNUAHw3r6N button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUAHw3r6N button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uNUAHw3r6N button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uNUAHw3r6N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUAHw3r6N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNUAHw3r6N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNUAHw3r6N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNUAHw3r6N .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uNUAHw3r6N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNUAHw3r6N .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-uNUAHw3r6N .navbar {
    height: 70px;
  }
  .cid-uNUAHw3r6N .navbar.opened {
    height: auto;
  }
  .cid-uNUAHw3r6N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNUAHw3r6N .navbar-nav {
  margin: 0 auto;
}
.cid-uNUAHw3r6N .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uNUAHw3r6N .nav-item .nav-link {
  padding: 7px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .nav-item .nav-link::after {
  color: #001b44 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uNUAHw3r6N .nav-item .nav-link:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #001b44, #001b44 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.cid-uNUAHw3r6N .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uNUAHw3r6N .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uNUAHw3r6N .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uNUAHw3r6N .nav-item .dropdown-menu .dropdown-item {
  color: #001b44 !important;
}
.cid-uNUAHw3r6N .nav-item .dropdown-menu .dropdown-item:hover {
  color: #001b44 !important;
}
@media (max-width: 991px) {
  .cid-uNUAHw3r6N .navbar {
    justify-content: flex-start !important;
  }
  .cid-uNUAHw3r6N .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uNUAHw3r6N .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uNUAHw3r6N .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uNUAHw3r6N .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uNUAHw3r6N .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uNUAHw3r6N .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uNUAHw3r6N .content-wrap {
  min-height: 90px;
}
.cid-uNUAHwwfiR {
  background-color: #ebeced;
}
.cid-uNUAHwwfiR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHwwfiR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHwwfiR .container-fluid {
  padding: 0;
}
.cid-uNUAHwwfiR .row {
  padding: 0;
}
.cid-uNUAHwwfiR .title-wrapper {
  padding: 0 2rem;
}
.cid-uNUAHwwfiR .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-uNUAHwwfiR .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-uNUAHwwfiR .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-uNUAHwwfiR .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-uNUAHwwfiR .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUAHwwfiR .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uNUAHwwfiR .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uNUAHwwfiR .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uNUAHwwfiR .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUAHwwfiR .title-wrapper img {
    max-height: 300px;
  }
}
.cid-uNUAHwwfiR .mbr-section-title {
  color: #1c314e;
}
.cid-uNUAHwwfiR .mbr-section-subtitle {
  color: #1c314e;
  text-align: center;
}
.cid-uNUAHwwfiR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uNUAHwwfiR .mbr-section-title,
.cid-uNUAHwwfiR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNUAHwU3xF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e6e6;
}
.cid-uNUAHwU3xF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHwU3xF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHwU3xF .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .container {
    padding: 0 6px;
  }
}
.cid-uNUAHwU3xF .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-uNUAHwU3xF .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uNUAHwU3xF .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-uNUAHwU3xF .row {
    padding: 0;
  }
}
.cid-uNUAHwU3xF .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uNUAHwU3xF .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-uNUAHwU3xF .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-uNUAHwU3xF .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uNUAHwU3xF .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-uNUAHwU3xF .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-uNUAHwU3xF .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-uNUAHwU3xF .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-uNUAHwU3xF .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAHwU3xF .mbr-section-title {
  color: #000000;
}
.cid-uNUAHwU3xF .list {
  color: #131313;
}
.cid-uNUAHxlgiW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #8e8e8e;
}
.cid-uNUAHxlgiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHxlgiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHxlgiW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUAHxlgiW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHxlgiW .container {
    padding: 0 16px;
  }
}
.cid-uNUAHxlgiW .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uNUAHxlgiW .row {
    margin: 0;
  }
}
.cid-uNUAHxlgiW .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUAHxlgiW .decor-wrapper_1 {
  height: 30px;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
}
.cid-uNUAHxlgiW .decor-wrapper_2 {
  height: 30px;
  background-color: #f4f669;
}
.cid-uNUAHxlgiW .decor-wrapper_3 {
  height: 30px;
  background-color: #000000;
}
.cid-uNUAHxlgiW .title-wrapper {
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAHxlgiW .title-wrapper {
    margin: 0 10px;
  }
}
.cid-uNUAHxlgiW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAHxJV8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUAHxJV8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHxJV8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHxJV8m .row {
  justify-content: space-between;
}
.cid-uNUAHxJV8m .card {
  justify-content: center;
}
.cid-uNUAHxJV8m .title-wrapper {
  margin-bottom: 40px;
}
.cid-uNUAHxJV8m .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uNUAHxJV8m .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUAHxJV8m .mbr-section-btn .btn::after,
.cid-uNUAHxJV8m .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uNUAHxJV8m .mbr-section-btn .btn:hover,
.cid-uNUAHxJV8m .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uNUAHxJV8m .mbr-section-btn .btn:hover::after,
.cid-uNUAHxJV8m .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uNUAHxJV8m .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNUAHxJV8m .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uNUAHxJV8m .image-wrapper img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNUAHxJV8m .image-wrapper img {
    height: 350px;
  }
}
.cid-uNUAHxJV8m .text-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-uNUAHxJV8m .text-wrapper {
    padding-left: 0;
  }
}
.cid-uNUAHxJV8m .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAHxJV8m .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uNUAHxJV8m .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAHxJV8m .mbr-tag {
  color: #ffffff;
}
.cid-uNUAHxJV8m .mbr-text {
  color: #c7c7c7;
}
.cid-uNUAHxJV8m .mbr-text,
.cid-uNUAHxJV8m .text-wrap,
.cid-uNUAHxJV8m .mbr-section-btn {
  color: #000000;
}
.cid-uNUAHxJV8m .mbr-section-title,
.cid-uNUAHxJV8m .main-btn {
  color: #000000;
}
.cid-uNUAHyb5Nm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #938a8a;
}
@media (max-width: 992px) {
  .cid-uNUAHyb5Nm .container {
    padding: 0 25px;
  }
}
.cid-uNUAHyb5Nm .title-wrapper {
  margin: 25px 0;
}
.cid-uNUAHyb5Nm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNUAHyb5Nm .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-uNUAHyb5Nm .text-wrapper .mbr-section-subtitle {
  margin: 25px 0;
}
.cid-uNUAHyb5Nm .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUAHyb5Nm .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAHyb5Nm .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUAHyb5Nm .mbr-text {
  color: #ffffff;
}
.cid-uNUAHyy4uT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uNUAHyy4uT .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uNUAHyy4uT .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uNUAHyy4uT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHyy4uT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHz2d57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUAHz2d57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHz2d57 .container {
  max-width: 1300px;
}
.cid-uNUAHz2d57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHz2d57 .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUAHz2d57 .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-uNUAHz2d57 .row {
  background: #8e8e8e;
}
@media (max-width: 991px) {
  .cid-uNUAHz2d57 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUAHz2d57 .image-wrapper {
  padding: 0;
}
.cid-uNUAHz2d57 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUAHz2d57 .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAHz2d57 .mbr-text,
.cid-uNUAHz2d57 .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUAHz2d57 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUAHzvAYg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNUAHzvAYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHzvAYg .container {
  max-width: 1300px;
}
.cid-uNUAHzvAYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHzvAYg .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-uNUAHzvAYg .text-wrapper {
    padding: 3rem;
  }
}
.cid-uNUAHzvAYg .row {
  background: #000000;
}
.cid-uNUAHzvAYg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uNUAHzvAYg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNUAHzvAYg .image-wrapper {
  padding: 0;
}
.cid-uNUAHzvAYg .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uNUAHzvAYg .mbr-section-title {
  color: #ffffff;
}
.cid-uNUAHzvAYg .mbr-text,
.cid-uNUAHzvAYg .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUAHzvAYg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNUAHzZ36J {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uNUAHzZ36J .mbr-text {
  color: #000000;
}
.cid-uNUAHzZ36J .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uNUAHzZ36J .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uNUAHAo75Y {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-uNUAHAo75Y .container-fluid {
  padding: 0 2rem;
}
.cid-uNUAHAo75Y .mbr-section-title {
  margin-bottom: 1rem;
  color: #8e8e8e;
}
.cid-uNUAHAo75Y .mbr-title {
  padding: 0 1rem;
}
.cid-uNUAHAo75Y .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-uNUAHAo75Y .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNUAHAo75Y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0041a1, #ff5740);
  display: inline-block;
}
.cid-uNUAHAo75Y .image-wrap {
  width: 100%;
}
.cid-uNUAHAo75Y .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-uNUAHAo75Y .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-uNUAHAo75Y .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uNUAHAo75Y .container-fluid {
    padding: 0rem;
  }
}
.cid-uNUAHAo75Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHAo75Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHB8yx7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNUAHB8yx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHB8yx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHB8yx7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .container {
    padding: 0 16px;
  }
}
.cid-uNUAHB8yx7 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .row {
    margin: 0 10px;
  }
}
.cid-uNUAHB8yx7 .row .card {
  position: relative;
  padding: 0;
}
.cid-uNUAHB8yx7 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #000000;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uNUAHB8yx7 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uNUAHB8yx7 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #000000;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uNUAHB8yx7 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .row .card .icon-decor {
    display: none;
  }
}
.cid-uNUAHB8yx7 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .title-wrapper {
    width: 100%;
  }
}
.cid-uNUAHB8yx7 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAHB8yx7 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNUAHB8yx7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNUAHB8yx7 .mbr-section-title {
  color: #000000;
}
.cid-uNUAHB8yx7 .mbr-text {
  color: #000000;
}
.cid-uNUAHBAMpt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUAHBAMpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHBAMpt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHBAMpt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHBAMpt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uNUAHBAMpt .container {
    padding: 0 25px;
  }
}
.cid-uNUAHBAMpt .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uNUAHBAMpt .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-uNUAHBAMpt .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-uNUAHBAMpt .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-uNUAHBAMpt .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uNUAHBAMpt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAHC6xRa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUAHC6xRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHC6xRa .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-uNUAHC6xRa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uNUAHC6xRa .container {
    padding: 0 12px;
  }
}
.cid-uNUAHC6xRa .row {
  justify-content: center;
}
.cid-uNUAHC6xRa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNUAHC6xRa .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uNUAHC6xRa .panel-group .card {
  border-radius: 50px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #8e8e8e;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uNUAHC6xRa .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uNUAHC6xRa .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-uNUAHC6xRa .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uNUAHC6xRa .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUAHC6xRa .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uNUAHC6xRa .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uNUAHC6xRa .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-uNUAHC6xRa .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-uNUAHC6xRa .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUAHC6xRa .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uNUAHC6xRa .panel-title-edit {
  color: #ffffff;
}
.cid-uNUAHC6xRa .panel-text {
  color: #201f1f;
}
.cid-uNUAHCKp8S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUAHCKp8S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHCKp8S .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-uNUAHCKp8S .container {
    padding: 0 16px;
  }
}
.cid-uNUAHCKp8S .card {
  justify-content: center;
}
.cid-uNUAHCKp8S .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uNUAHCKp8S .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNUAHCKp8S .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uNUAHCKp8S .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uNUAHCKp8S .mbr-section-title {
  color: #000000;
}
.cid-uNUAHCKp8S .mbr-text {
  color: #000000;
}
.cid-uNUAHCKp8S .mbr-desc {
  color: #000000;
}
.cid-uNUAHCKp8S .mbr-text,
.cid-uNUAHCKp8S .mbr-section-btn {
  color: #ffffff;
}
.cid-uNUL8bvC1c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNUL8bvC1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUL8bvC1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUL8bvC1c .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uNUL8bvC1c .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uNUL8bvC1c .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #181818;
}
@media (max-width: 992px) {
  .cid-uNUL8bvC1c .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uNUL8bvC1c .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uNUL8bvC1c .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uNUL8bvC1c .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uNUL8bvC1c .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uNUL8bvC1c .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uNUL8bvC1c .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uNUL8bvC1c .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uNUL8bvC1c .mbr-section-title {
  color: #19171c;
}
.cid-uNUL8bvC1c .panel-title {
  color: #19171c;
}
.cid-uNUL8bvC1c .panel-text {
  color: #000000;
}
.cid-uNUL8bvC1c .mbr-section-title,
.cid-uNUL8bvC1c .mbr-section-btn {
  color: #000000;
}
.cid-uNUL8bvC1c .panel-title-edit {
  color: #000000;
}
.cid-uNUAHDiKiO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uNUAHDiKiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHDiKiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHDiKiO .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uNUAHDiKiO .card-wrapper {
  padding: 54px;
  border: 3px dashed #000000;
}
@media (max-width: 992px) {
  .cid-uNUAHDiKiO .card-wrapper {
    padding: 22px;
  }
}
.cid-uNUAHDiKiO .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uNUAHDiKiO .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uNUAHDiKiO .mbr-label {
  color: #ffffff;
  text-align: center;
}
.cid-uNUAHDPI6q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e8e8e;
}
.cid-uNUAHDPI6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUAHDPI6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUAHDPI6q .content-wrap {
  padding: 60px;
  background-color: #8e8e8e;
}
@media (max-width: 992px) {
  .cid-uNUAHDPI6q .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uNUAHDPI6q .content-wrap .row {
  justify-content: center;
}
.cid-uNUAHDPI6q .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHDPI6q .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAHDPI6q .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uNUAHDPI6q .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uNUAHDPI6q .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uNUAHDPI6q .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNUAHDPI6q .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHDPI6q .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAHDPI6q .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAHDPI6q .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUAHDPI6q .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUAHDPI6q .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAHDPI6q .nav-wrapper .list .item-wrap:hover,
.cid-uNUAHDPI6q .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUAHDPI6q .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHDPI6q .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAHDPI6q .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAHDPI6q .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uNUAHDPI6q .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uNUAHDPI6q .contacts-wrapper .list .item-wrap:hover,
.cid-uNUAHDPI6q .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uNUAHDPI6q .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNUAHDPI6q .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNUAHDPI6q .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNUAHDPI6q .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNUAHDPI6q .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uNUAHDPI6q .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uNUAHDPI6q .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uNUAHDPI6q .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uNUAHDPI6q .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed3b23;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uNUAHDPI6q .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uNUAHDPI6q .mbr-section-title {
  color: #ed463f;
}
.cid-uNUAHDPI6q .mbr-section-subtitle {
  color: #000000;
}
.cid-uNUAHDPI6q .list {
  color: #404349;
}
.cid-uNUAHDPI6q .list,
.cid-uNUAHDPI6q .item-wrap {
  color: #000000;
}
