body {
  font-family: Epilogue;
}
.display-1 {
  font-family: 'Century Gothic';
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Century Gothic';
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-4 {
  font-family: 'Century Gothic';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Century Gothic';
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Century Gothic';
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #009ee3 !important;
}
.bg-success {
  background-color: #009ee3 !important;
}
.bg-info {
  background-color: #0050a0 !important;
}
.bg-warning {
  background-color: #3017cd !important;
}
.bg-danger {
  background-color: #38f0f0 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #007bb0 !important;
  border-color: #007bb0 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #007bb0 !important;
  border-color: #007bb0 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0080c8 !important;
  border-color: #0080c8 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #005f95 !important;
  border-color: #005f95 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #005f95 !important;
  border-color: #005f95 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0050a0 !important;
  border-color: #0050a0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #00366d !important;
  border-color: #00366d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00366d !important;
  border-color: #00366d !important;
}
.btn-success,
.btn-success:active {
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #007bb0 !important;
  border-color: #007bb0 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #007bb0 !important;
  border-color: #007bb0 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #3017cd !important;
  border-color: #3017cd !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #25129f !important;
  border-color: #25129f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #25129f !important;
  border-color: #25129f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #38f0f0 !important;
  border-color: #38f0f0 !important;
  color: #032626 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #000000 !important;
  background-color: #11e4e4 !important;
  border-color: #11e4e4 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #032626 !important;
  background-color: #11e4e4 !important;
  border-color: #11e4e4 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #009ee3;
  color: #009ee3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #0080c8;
  color: #0080c8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #0080c8 !important;
  border-color: #0080c8 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0080c8 !important;
  border-color: #0080c8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0050a0;
  color: #0050a0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #0050a0 !important;
  border-color: #0050a0 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0050a0 !important;
  border-color: #0050a0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #009ee3;
  color: #009ee3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #009ee3 !important;
  border-color: #009ee3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #3017cd;
  color: #3017cd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #3017cd !important;
  border-color: #3017cd !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #3017cd !important;
  border-color: #3017cd !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #38f0f0;
  color: #38f0f0;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #032626 !important;
  background-color: #38f0f0 !important;
  border-color: #38f0f0 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #032626 !important;
  background-color: #38f0f0 !important;
  border-color: #38f0f0 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #121212;
  border-color: #121212;
  color: #fafafa;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #121212;
  background-color: transparent;
  border-color: #121212;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #121212;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #fafafa;
  background-color: transparent;
  border-color: #fafafa;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #121212;
  color: #121212;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #fafafa;
  background-color: #121212;
  border-color: #121212;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #121212;
  background-color: #fafafa;
  border-color: #fafafa;
}
.text-primary {
  color: #009ee3 !important;
}
.text-secondary {
  color: #0080c8 !important;
}
.text-success {
  color: #009ee3 !important;
}
.text-info {
  color: #0050a0 !important;
}
.text-warning {
  color: #3017cd !important;
}
.text-danger {
  color: #38f0f0 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #009ee3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0080c8 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #009ee3 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0050a0 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3017cd !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #38f0f0 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #009ee3;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0050a0;
}
.alert-warning {
  background-color: #3017cd;
}
.alert-danger {
  background-color: #38f0f0;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #009ee3;
  border-color: #009ee3;
  color: #ffffff;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #009ee3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b0e7ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b0e7ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #2190ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c1b9f7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f6fefe;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Century Gothic';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #009ee3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Century Gothic';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #009ee3;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #009ee3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #009ee3;
}
.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: #009ee3;
  border-bottom-color: #009ee3;
}
.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: #009ee3 !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: #0080c8 !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='%23009ee3' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uBz6lMKkTu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uBz6lMKkTu nav.navbar {
  position: fixed;
}
.cid-uBz6lMKkTu .nav-link,
.cid-uBz6lMKkTu .dropdown-item {
  font-weight: 400;
}
.cid-uBz6lMKkTu .nav-link:hover,
.cid-uBz6lMKkTu .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uBz6lMKkTu .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBz6lMKkTu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBz6lMKkTu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBz6lMKkTu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBz6lMKkTu .nav-link {
  position: relative;
}
.cid-uBz6lMKkTu .container {
  display: flex;
  margin: auto;
}
.cid-uBz6lMKkTu .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBz6lMKkTu .dropdown-menu,
.cid-uBz6lMKkTu .navbar.opened {
  background: #ffffff !important;
}
.cid-uBz6lMKkTu .nav-item:focus,
.cid-uBz6lMKkTu .nav-link:focus {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBz6lMKkTu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBz6lMKkTu .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.opened {
  transition: all .3s;
}
.cid-uBz6lMKkTu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBz6lMKkTu .navbar .navbar-logo img {
  width: auto;
}
.cid-uBz6lMKkTu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar.collapsed {
  justify-content: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBz6lMKkTu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBz6lMKkTu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBz6lMKkTu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBz6lMKkTu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBz6lMKkTu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBz6lMKkTu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBz6lMKkTu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBz6lMKkTu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBz6lMKkTu .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBz6lMKkTu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown-item.active,
.cid-uBz6lMKkTu .dropdown-item:active {
  background-color: transparent;
}
.cid-uBz6lMKkTu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBz6lMKkTu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBz6lMKkTu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBz6lMKkTu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBz6lMKkTu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBz6lMKkTu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar {
    height: 70px;
  }
  .cid-uBz6lMKkTu .navbar.opened {
    height: auto;
  }
  .cid-uBz6lMKkTu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9s6T2UlmG {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/brain-1200x628.webp");
}
.cid-u9s6T2UlmG .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-u9s6T2UlmG .wrap {
  padding: 0 25px;
}
.cid-u9s6T2UlmG .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-u9s6T2UlmG .mbr-text {
  margin-bottom: 20px;
}
.cid-u9s6T2UlmG .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-u9s6T2UlmG .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-u9s6T2UlmG .container,
  .cid-u9s6T2UlmG .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u9s6T2UlmG .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-u9s6T2UlmG a.close {
    right: 50px;
    top: 25px;
  }
  .cid-u9s6T2UlmG .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-u9s6T2UlmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9s6T2UlmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkzCIBiv3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCkzCIBiv3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkzCIBiv3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkzCIBiv3 .items-wrapper {
  justify-content: center;
}
.cid-uCkzCIBiv3 .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #060606, #202020 65%, #393939);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uCkzCIBiv3 .mbr-text,
.cid-uCkzCIBiv3 .text-wrapper {
  color: #3b6bff;
  text-align: center;
}
.cid-uCkzT9zTmR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCkzT9zTmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkzT9zTmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkzT9zTmR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCkzT9zTmR .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uCkzT9zTmR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uCkzT9zTmR .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uCkzT9zTmR .container {
    padding: 0 16px;
  }
}
.cid-uCkzT9zTmR .row {
  justify-content: center;
}
.cid-uCkzT9zTmR .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uCkzT9zTmR .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uCkzT9zTmR .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCkzT9zTmR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uCkzT9zTmR .mbr-section-subtitle {
  color: #0050a0;
  text-align: center;
}
.cid-uCkzT9zTmR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCkB87NnEK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uCkB87NnEK .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uCkB87NnEK .mbr-section-subtitle {
  color: #707070;
  text-align: center;
}
.cid-uCkB87NnEK .mbr-text,
.cid-uCkB87NnEK .link {
  color: #121212;
}
.cid-uCkB87NnEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkB87NnEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkB87NnEK .card-title,
.cid-uCkB87NnEK .card-box {
  text-align: center;
  color: #009ee3;
}
.cid-uCkEVVF0jp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uCkEVVF0jp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkEVVF0jp .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-uCkEVVF0jp .container {
    padding: 0 20px;
  }
}
.cid-uCkEVVF0jp .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uCkEVVF0jp .content-wrapper {
    padding: 46px 0;
  }
}
.cid-uCkEVVF0jp .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uCkEVVF0jp .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCkEVVF0jp .content-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-uCkEVVF0jp .content-wrapper .items-wrapper {
  margin: 60px 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCkEVVF0jp .content-wrapper .items-wrapper {
    margin: 46px 0 46px;
  }
}
.cid-uCkEVVF0jp .content-wrapper .items-wrapper .item {
  padding: 20px 24px;
  border-radius: 20px !important;
  background-color: #b5ecf4;
  flex-grow: 1;
  width: 260px;
}
@media (max-width: 992px) {
  .cid-uCkEVVF0jp .content-wrapper .items-wrapper .item {
    padding: 20px;
  }
}
.cid-uCkEVVF0jp .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-number {
  margin-bottom: 18px;
}
.cid-uCkEVVF0jp .content-wrapper .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 60px;
}
.cid-uCkEVVF0jp .content-wrapper .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 48px;
  color: #000000;
  display: inline-flex;
}
.cid-uCkEVVF0jp .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCkEVVF0jp .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-primary,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-secondary,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-success,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-info,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-warning,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-danger,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-black,
.cid-uCkEVVF0jp .content-wrapper .mbr-section-btn .btn-white {
  border: 2px solid #f3f6f9 !important;
}
.cid-uCkEVVF0jp .mbr-section-title {
  color: #000000;
}
.cid-uCkEVVF0jp .mbr-desc,
.cid-uCkEVVF0jp .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCkEVVF0jp .card-number {
  color: #000000;
}
.cid-uCkEVVF0jp .card-title {
  color: #000000;
}
.cid-uCkEVVF0jp .mbr-text,
.cid-uCkEVVF0jp .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCkEVVF0jp .mbr-section-title,
.cid-uCkEVVF0jp .mbr-section-btn {
  text-align: center;
}
.cid-uCkEVVF0jp .card-title,
.cid-uCkEVVF0jp .icon-wrapper {
  text-align: center;
}
.cid-uCkChSScQ3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCkChSScQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkChSScQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkChSScQ3 .text-primary {
  background-color: #009ee3;
}
.cid-uCkChSScQ3 .mbr-section-title {
  color: #454545;
}
.cid-uCroeL0W1G {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCroeL0W1G .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCroeL0W1G .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCroeL0W1G .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCroeL0W1G .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCroeL0W1G .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCroeL0W1G .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCroeL0W1G .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCroeL0W1G .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCroeL0W1G .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCroeL0W1G .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCroeL0W1G .soc-item a {
  color: #fafafa;
}
.cid-uCroeL0W1G .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCroeL0W1G .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCroeL0W1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCroeL0W1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCroeL0W1G .mbr-tag,
.cid-uCroeL0W1G .social-row {
  color: #bbbbbb;
}
.cid-uBz6lMKkTu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uBz6lMKkTu nav.navbar {
  position: fixed;
}
.cid-uBz6lMKkTu .nav-link,
.cid-uBz6lMKkTu .dropdown-item {
  font-weight: 400;
}
.cid-uBz6lMKkTu .nav-link:hover,
.cid-uBz6lMKkTu .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uBz6lMKkTu .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBz6lMKkTu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBz6lMKkTu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBz6lMKkTu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBz6lMKkTu .nav-link {
  position: relative;
}
.cid-uBz6lMKkTu .container {
  display: flex;
  margin: auto;
}
.cid-uBz6lMKkTu .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBz6lMKkTu .dropdown-menu,
.cid-uBz6lMKkTu .navbar.opened {
  background: #ffffff !important;
}
.cid-uBz6lMKkTu .nav-item:focus,
.cid-uBz6lMKkTu .nav-link:focus {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBz6lMKkTu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBz6lMKkTu .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.opened {
  transition: all .3s;
}
.cid-uBz6lMKkTu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBz6lMKkTu .navbar .navbar-logo img {
  width: auto;
}
.cid-uBz6lMKkTu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar.collapsed {
  justify-content: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBz6lMKkTu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBz6lMKkTu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBz6lMKkTu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBz6lMKkTu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBz6lMKkTu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBz6lMKkTu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBz6lMKkTu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBz6lMKkTu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBz6lMKkTu .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBz6lMKkTu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown-item.active,
.cid-uBz6lMKkTu .dropdown-item:active {
  background-color: transparent;
}
.cid-uBz6lMKkTu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBz6lMKkTu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBz6lMKkTu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBz6lMKkTu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBz6lMKkTu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBz6lMKkTu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar {
    height: 70px;
  }
  .cid-uBz6lMKkTu .navbar.opened {
    height: auto;
  }
  .cid-uBz6lMKkTu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9spPrLBqh {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/firefly-d35dede8-8b41-4feb-b0a5-0d9250d0e1f0-2000x1556.webp");
}
.cid-u9spPrLBqh .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-u9spPrLBqh .wrap {
  padding: 0 25px;
}
.cid-u9spPrLBqh .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-u9spPrLBqh .mbr-text {
  margin-bottom: 20px;
}
.cid-u9spPrLBqh .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-u9spPrLBqh .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-u9spPrLBqh .container,
  .cid-u9spPrLBqh .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u9spPrLBqh .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-u9spPrLBqh a.close {
    right: 50px;
    top: 25px;
  }
  .cid-u9spPrLBqh .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-u9spPrLBqh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9spPrLBqh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGkOHTIUS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBGkOHTIUS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBGkOHTIUS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGkOHTIUS .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uBGkOHTIUS .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBGkOHTIUS .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBGkOHTIUS .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBGkOHTIUS .container {
    padding: 0 16px;
  }
}
.cid-uBGkOHTIUS .row {
  justify-content: center;
}
.cid-uBGkOHTIUS .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uBGkOHTIUS .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBGkOHTIUS .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBGkOHTIUS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uBGkOHTIUS .mbr-section-subtitle {
  color: #707070;
  text-align: center;
}
.cid-uBGkOHTIUS .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCkjzwJT1r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uCkjzwJT1r .mbr-gallery-filter {
  text-align: left;
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul {
  position: relative;
}
@media (min-width: 768px) {
  .cid-uCkjzwJT1r .mbr-gallery-filter ul {
    margin: 5px 0 60px;
    padding-left: 190px;
  }
  .cid-uCkjzwJT1r .mbr-gallery-filter ul:before {
    content: "";
    width: 150px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 0;
    background: #3017cd;
  }
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul li a.btn {
  border: none !important;
  margin: 0;
  font-size: 24px;
  min-width: auto !important;
  background: transparent !important;
  box-shadow: none;
}
@media (max-width: 767px) {
  .cid-uCkjzwJT1r .mbr-gallery-filter ul li a.btn {
    margin-right: 35px;
  }
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul li a.btn:before {
  background: transparent !important;
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul li a.btn:hover {
  background-color: transparent !important;
  color: #3017cd !important;
}
.cid-uCkjzwJT1r .mbr-gallery-filter ul li.active .btn {
  background-color: transparent !important;
  color: #3017cd !important;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div img {
  height: 650px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div .icon-focus {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px !important;
  transition: all 0.3s ease-in-out;
  font-family: "Moririse2" !important;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div .icon-focus:before {
  content: "\e99b";
}
.cid-uCkjzwJT1r .mbr-gallery-item > div .icon-video {
  transform: translateY(50%);
  top: 55%;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: 0;
  border: 1px solid #fff;
  z-index: 2;
  transition: 0.5s opacity ease-in-out;
}
.cid-uCkjzwJT1r .mbr-slider .carousel-control {
  background: #1b1b1b;
  border-radius: 0;
}
.cid-uCkjzwJT1r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uCkjzwJT1r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uCkjzwJT1r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #233d63;
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div > span {
  color: #ffffff;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover:after {
  opacity: 1;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover img {
  transform: scale3d(1.1, 1.1, 1);
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover .icon-focus {
  bottom: 33%;
  bottom: 50%;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
  opacity: 1;
  position: absolute;
  width: 100%;
  bottom: 40%;
  padding: 35px;
  font-weight: 500;
  text-align: center;
  z-index: 5;
  transition: bottom 0.3s ease-in-out;
}
.cid-uCkjzwJT1r .mbr-gallery-item > div:hover .mbr-gallery-title:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: transparent;
  transition: 0.3s background ease-in-out;
}
.cid-uCkjzwJT1r .mbr-gallery-title {
  opacity: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.cid-uCkjzwJT1r .modal-body .close {
  top: 0;
  right: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  height: 40px;
}
.cid-uCkQXST4Oa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCkQXST4Oa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkQXST4Oa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkQXST4Oa .text-primary {
  background-color: #009ee3;
}
.cid-uCkQXST4Oa .mbr-section-title {
  color: #454545;
}
.cid-uCroeL0W1G {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCroeL0W1G .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCroeL0W1G .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCroeL0W1G .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCroeL0W1G .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCroeL0W1G .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCroeL0W1G .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCroeL0W1G .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCroeL0W1G .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCroeL0W1G .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCroeL0W1G .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCroeL0W1G .soc-item a {
  color: #fafafa;
}
.cid-uCroeL0W1G .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCroeL0W1G .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCroeL0W1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCroeL0W1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCroeL0W1G .mbr-tag,
.cid-uCroeL0W1G .social-row {
  color: #bbbbbb;
}
.cid-uBz6lMKkTu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uBz6lMKkTu nav.navbar {
  position: fixed;
}
.cid-uBz6lMKkTu .nav-link,
.cid-uBz6lMKkTu .dropdown-item {
  font-weight: 400;
}
.cid-uBz6lMKkTu .nav-link:hover,
.cid-uBz6lMKkTu .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uBz6lMKkTu .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBz6lMKkTu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBz6lMKkTu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBz6lMKkTu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBz6lMKkTu .nav-link {
  position: relative;
}
.cid-uBz6lMKkTu .container {
  display: flex;
  margin: auto;
}
.cid-uBz6lMKkTu .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBz6lMKkTu .dropdown-menu,
.cid-uBz6lMKkTu .navbar.opened {
  background: #ffffff !important;
}
.cid-uBz6lMKkTu .nav-item:focus,
.cid-uBz6lMKkTu .nav-link:focus {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBz6lMKkTu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBz6lMKkTu .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.opened {
  transition: all .3s;
}
.cid-uBz6lMKkTu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBz6lMKkTu .navbar .navbar-logo img {
  width: auto;
}
.cid-uBz6lMKkTu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar.collapsed {
  justify-content: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBz6lMKkTu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBz6lMKkTu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBz6lMKkTu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBz6lMKkTu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBz6lMKkTu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBz6lMKkTu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBz6lMKkTu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBz6lMKkTu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBz6lMKkTu .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBz6lMKkTu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown-item.active,
.cid-uBz6lMKkTu .dropdown-item:active {
  background-color: transparent;
}
.cid-uBz6lMKkTu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBz6lMKkTu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBz6lMKkTu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBz6lMKkTu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBz6lMKkTu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBz6lMKkTu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar {
    height: 70px;
  }
  .cid-uBz6lMKkTu .navbar.opened {
    height: auto;
  }
  .cid-uBz6lMKkTu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9s7DlDNen {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/firefly-125f06fa-6002-4c1a-a5d5-913e724228ec-2000x1556.webp");
}
.cid-u9s7DlDNen .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-u9s7DlDNen .wrap {
  padding: 0 25px;
}
.cid-u9s7DlDNen .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-u9s7DlDNen .mbr-text {
  margin-bottom: 20px;
}
.cid-u9s7DlDNen .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-u9s7DlDNen .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-u9s7DlDNen .container,
  .cid-u9s7DlDNen .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u9s7DlDNen .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-u9s7DlDNen a.close {
    right: 50px;
    top: 25px;
  }
  .cid-u9s7DlDNen .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-u9s7DlDNen .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9s7DlDNen .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uextyLD7G4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uextyLD7G4 .row {
  align-items: center;
}
.cid-uextyLD7G4 .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uextyLD7G4 .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-uextyLD7G4 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uextyLD7G4 .header-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uextyLD7G4 .label-text {
  width: 100%;
  color: #707070;
  margin-bottom: 0;
  text-align: center;
}
.cid-uextyLD7G4 .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}
.cid-uextyLD7G4 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uextyLD7G4 .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-uextyLD7G4 .icons-menu {
  margin-left: -8px;
  margin-right: -8px;
  width: 100%;
}
.cid-uextyLD7G4 .iconfont-wrapper {
  color: #111111 !important;
}
.cid-uextyLD7G4 .iconfont-wrapper:hover {
  color: #009ee3 !important;
}
.cid-uextyLD7G4 .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-uextyLD7G4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uextyLD7G4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uextyLD7G4 .contacts-text,
.cid-uextyLD7G4 .icons-menu {
  text-align: center;
}
.cid-uextyLD7G4 .mbr-text,
.cid-uextyLD7G4 .mbr-section-btn {
  text-align: center;
  color: #121212;
}
.cid-uextHwuS1Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uextHwuS1Q .google-map {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.cid-uextHwuS1Q .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-uextHwuS1Q .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uextHwuS1Q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uextHwuS1Q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uextHwuS1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uextHwuS1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uextHwuS1Q .mbr-section-title {
  text-align: left;
  color: #777777;
}
.cid-uextHwuS1Q .mbr-section-subtitle {
  text-align: left;
}
.cid-uCroeL0W1G {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCroeL0W1G .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCroeL0W1G .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCroeL0W1G .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCroeL0W1G .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCroeL0W1G .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCroeL0W1G .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCroeL0W1G .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCroeL0W1G .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCroeL0W1G .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCroeL0W1G .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCroeL0W1G .soc-item a {
  color: #fafafa;
}
.cid-uCroeL0W1G .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCroeL0W1G .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCroeL0W1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCroeL0W1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCroeL0W1G .mbr-tag,
.cid-uCroeL0W1G .social-row {
  color: #bbbbbb;
}
.cid-uCYLmG4kUz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uCYLmG4kUz nav.navbar {
  position: fixed;
}
.cid-uCYLmG4kUz .nav-link,
.cid-uCYLmG4kUz .dropdown-item {
  font-weight: 400;
}
.cid-uCYLmG4kUz .nav-link:hover,
.cid-uCYLmG4kUz .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uCYLmG4kUz .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uCYLmG4kUz .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-uCYLmG4kUz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCYLmG4kUz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCYLmG4kUz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCYLmG4kUz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCYLmG4kUz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCYLmG4kUz .nav-link {
  position: relative;
}
.cid-uCYLmG4kUz .container {
  display: flex;
  margin: auto;
}
.cid-uCYLmG4kUz .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCYLmG4kUz .dropdown-menu,
.cid-uCYLmG4kUz .navbar.opened {
  background: #ffffff !important;
}
.cid-uCYLmG4kUz .nav-item:focus,
.cid-uCYLmG4kUz .nav-link:focus {
  outline: none;
}
.cid-uCYLmG4kUz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCYLmG4kUz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCYLmG4kUz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uCYLmG4kUz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCYLmG4kUz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCYLmG4kUz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCYLmG4kUz .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uCYLmG4kUz .navbar.opened {
  transition: all .3s;
}
.cid-uCYLmG4kUz .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCYLmG4kUz .navbar .navbar-logo img {
  width: auto;
}
.cid-uCYLmG4kUz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCYLmG4kUz .navbar.collapsed {
  justify-content: center;
}
.cid-uCYLmG4kUz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCYLmG4kUz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCYLmG4kUz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uCYLmG4kUz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCYLmG4kUz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCYLmG4kUz .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-uCYLmG4kUz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCYLmG4kUz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCYLmG4kUz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCYLmG4kUz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCYLmG4kUz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCYLmG4kUz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCYLmG4kUz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCYLmG4kUz .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-uCYLmG4kUz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCYLmG4kUz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCYLmG4kUz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCYLmG4kUz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCYLmG4kUz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCYLmG4kUz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCYLmG4kUz .navbar.navbar-short {
  min-height: 80px;
}
.cid-uCYLmG4kUz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCYLmG4kUz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCYLmG4kUz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCYLmG4kUz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCYLmG4kUz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCYLmG4kUz .dropdown-item.active,
.cid-uCYLmG4kUz .dropdown-item:active {
  background-color: transparent;
}
.cid-uCYLmG4kUz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCYLmG4kUz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCYLmG4kUz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCYLmG4kUz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCYLmG4kUz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCYLmG4kUz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCYLmG4kUz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCYLmG4kUz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCYLmG4kUz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCYLmG4kUz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uCYLmG4kUz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCYLmG4kUz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYLmG4kUz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYLmG4kUz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCYLmG4kUz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYLmG4kUz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCYLmG4kUz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCYLmG4kUz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYLmG4kUz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCYLmG4kUz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCYLmG4kUz .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-uCYLmG4kUz .navbar {
    height: 70px;
  }
  .cid-uCYLmG4kUz .navbar.opened {
    height: auto;
  }
  .cid-uCYLmG4kUz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCYLmGEDXb {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uCYLmGEDXb .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uCYLmGEDXb .wrap {
  padding: 0 25px;
}
.cid-uCYLmGEDXb .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uCYLmGEDXb .mbr-text {
  margin-bottom: 20px;
}
.cid-uCYLmGEDXb .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uCYLmGEDXb .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uCYLmGEDXb .container,
  .cid-uCYLmGEDXb .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCYLmGEDXb .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uCYLmGEDXb a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uCYLmGEDXb .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uCYLmGEDXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCYLmGEDXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCYLmHbr9s {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCYLmHbr9s .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCYLmHbr9s .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCYLmHbr9s .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCYLmHbr9s .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCYLmHbr9s .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCYLmHbr9s .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCYLmHbr9s .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCYLmHbr9s .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCYLmHbr9s .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCYLmHbr9s .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCYLmHbr9s .soc-item a {
  color: #fafafa;
}
.cid-uCYLmHbr9s .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCYLmHbr9s .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCYLmHbr9s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCYLmHbr9s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCYLmHbr9s .mbr-tag,
.cid-uCYLmHbr9s .social-row {
  color: #bbbbbb;
}
.cid-uCYLqEOIoU {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uCYLqEOIoU .mbr-text,
.cid-uCYLqEOIoU blockquote {
  color: #767676;
}
.cid-uCYLqEOIoU .mbr-text P {
  text-align: left;
}
.cid-uCYLrfFdLg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uCYLrfFdLg .mbr-section-subtitle {
  color: #767676;
}
.cid-uCYLrfFdLg .container-table {
  margin: 0 auto;
}
.cid-uCYLrfFdLg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uCYLrfFdLg .dataTables_wrapper {
  display: block;
}
.cid-uCYLrfFdLg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uCYLrfFdLg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uCYLrfFdLg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uCYLrfFdLg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uCYLrfFdLg table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uCYLrfFdLg table td {
  border-top: 1px solid #cccccc;
}
.cid-uCYLrfFdLg table.table {
  background: #ffffff;
}
.cid-uCYLrfFdLg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uCYLrfFdLg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uCYLrfFdLg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uCYLrfFdLg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uCYLrfFdLg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uCYLrfFdLg .dataTables_filter {
    text-align: center;
  }
  .cid-uCYLrfFdLg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uCYLrfFdLg .body-item {
  color: #767676;
}
.cid-uCYLrfFdLg .head-item {
  color: #767676;
}
.cid-uCYLrBEQ5Y {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uCYLrBEQ5Y .mbr-text,
.cid-uCYLrBEQ5Y blockquote {
  color: #767676;
}
.cid-uCYLrBEQ5Y .mbr-text P {
  text-align: left;
}
.cid-uBz6lMKkTu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uBz6lMKkTu nav.navbar {
  position: fixed;
}
.cid-uBz6lMKkTu .nav-link,
.cid-uBz6lMKkTu .dropdown-item {
  font-weight: 400;
}
.cid-uBz6lMKkTu .nav-link:hover,
.cid-uBz6lMKkTu .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uBz6lMKkTu .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBz6lMKkTu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBz6lMKkTu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBz6lMKkTu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBz6lMKkTu .nav-link {
  position: relative;
}
.cid-uBz6lMKkTu .container {
  display: flex;
  margin: auto;
}
.cid-uBz6lMKkTu .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBz6lMKkTu .dropdown-menu,
.cid-uBz6lMKkTu .navbar.opened {
  background: #ffffff !important;
}
.cid-uBz6lMKkTu .nav-item:focus,
.cid-uBz6lMKkTu .nav-link:focus {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uBz6lMKkTu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBz6lMKkTu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBz6lMKkTu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBz6lMKkTu .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.opened {
  transition: all .3s;
}
.cid-uBz6lMKkTu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uBz6lMKkTu .navbar .navbar-logo img {
  width: auto;
}
.cid-uBz6lMKkTu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar.collapsed {
  justify-content: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBz6lMKkTu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBz6lMKkTu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBz6lMKkTu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBz6lMKkTu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uBz6lMKkTu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBz6lMKkTu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBz6lMKkTu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBz6lMKkTu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBz6lMKkTu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBz6lMKkTu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBz6lMKkTu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uBz6lMKkTu .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBz6lMKkTu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBz6lMKkTu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBz6lMKkTu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBz6lMKkTu .dropdown-item.active,
.cid-uBz6lMKkTu .dropdown-item:active {
  background-color: transparent;
}
.cid-uBz6lMKkTu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBz6lMKkTu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBz6lMKkTu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBz6lMKkTu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBz6lMKkTu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBz6lMKkTu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBz6lMKkTu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBz6lMKkTu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uBz6lMKkTu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBz6lMKkTu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBz6lMKkTu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBz6lMKkTu .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-uBz6lMKkTu .navbar {
    height: 70px;
  }
  .cid-uBz6lMKkTu .navbar.opened {
    height: auto;
  }
  .cid-uBz6lMKkTu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCk825Z0Vm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/firefly-91547a73-fed4-4fb2-8799-b5d4a3cba052-2000x1556.webp");
}
.cid-uCk825Z0Vm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCk825Z0Vm .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-uCk825Z0Vm .container {
    padding: 0 30px;
  }
}
.cid-uCk825Z0Vm .row {
  justify-content: center;
}
.cid-uCk825Z0Vm .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uCk825Z0Vm .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uCk825Z0Vm .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-uCk825Z0Vm .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uCk825Z0Vm .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uCk825Z0Vm .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uCk825Z0Vm .mbr-section-title {
  color: #ffffff;
}
.cid-uCk825Z0Vm .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uCk825Z0Vm .mbr-section-title,
.cid-uCk825Z0Vm .mbr-section-btn {
  text-align: center;
}
.cid-uCkIOpelB4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCkIOpelB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkIOpelB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkIOpelB4 .items-wrapper {
  justify-content: center;
}
.cid-uCkIOpelB4 .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #060606, #202020 65%, #393939);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uCkIOpelB4 .mbr-text,
.cid-uCkIOpelB4 .text-wrapper {
  color: #3b6bff;
  text-align: center;
}
.cid-uBAuta95Gw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBAuta95Gw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBAuta95Gw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBAuta95Gw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uBAuta95Gw .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBAuta95Gw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBAuta95Gw .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBAuta95Gw .container {
    padding: 0 16px;
  }
}
.cid-uBAuta95Gw .row {
  justify-content: center;
}
.cid-uBAuta95Gw .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uBAuta95Gw .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBAuta95Gw .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBAuta95Gw .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uBAuta95Gw .mbr-section-subtitle {
  color: #707070;
  text-align: center;
}
.cid-uBAuta95Gw .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ugxB8UXNuV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugxB8UXNuV .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #0080c8;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-ugxB8UXNuV .list {
  line-height: 2;
  color: #131419;
  text-align: center;
}
.cid-ugxB8UXNuV .card-link,
.cid-ugxB8UXNuV .link-wrap,
.cid-ugxB8UXNuV .card-link:before {
  color: #121212;
}
.cid-ugxB8UXNuV .card-wrapper {
  overflow: visible;
}
.cid-ugxB8UXNuV .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-ugxB8UXNuV .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-ugxB8UXNuV .card-link:hover {
  color: #009ee3;
  transition: all 0.3s;
}
.cid-ugxB8UXNuV .card-link:hover:before {
  right: -2rem;
  color: #009ee3;
  transition: all 0.3s;
}
.cid-ugxB8UXNuV .card-text {
  color: #131419;
  text-align: center;
}
.cid-ugxB8UXNuV .card-title,
.cid-ugxB8UXNuV .icon-wrap {
  color: #121212;
  text-align: center;
}
.cid-ugxB8UXNuV .mbr-section-title {
  color: #121212;
}
.cid-ugxB8UXNuV .mbr-section-subtitle {
  color: #707070;
}
.cid-ugxB8UXNuV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugxB8UXNuV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGq7ulVx5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBGq7ulVx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBGq7ulVx5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGq7ulVx5 .text-primary {
  background-color: #009ee3;
}
.cid-uBGq7ulVx5 .mbr-section-title {
  color: #454545;
}
.cid-uCYZZK2wn7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCYZZK2wn7 .container {
    padding: 0 15px;
  }
}
.cid-uCYZZK2wn7 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uCYZZK2wn7 .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uCYZZK2wn7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 514px;
  max-width: 514px;
}
@media (max-width: 767px) {
  .cid-uCYZZK2wn7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCYZZK2wn7 .embla__slide .slide-content {
  width: 100%;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-wrapper .item-img:hover img,
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-wrapper .item-img:focus img {
  transform: scale(1.2);
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 720px;
  object-fit: cover;
  transition: all 0.8s ease-in-out;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-content {
  position: relative;
  z-index: 1;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-content .item-desc {
  margin-bottom: 20px;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-content .item-text {
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-content .item-text:hover,
.cid-uCYZZK2wn7 .embla__slide .slide-content .item-content .item-text:focus {
  text-decoration-color: #3f1819;
}
.cid-uCYZZK2wn7 .embla__button--next,
.cid-uCYZZK2wn7 .embla__button--prev {
  display: flex;
}
.cid-uCYZZK2wn7 .embla__button {
  bottom: 0;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0080c8 !important;
  border: 2px solid #0080c8 !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uCYZZK2wn7 .embla__button:hover {
  opacity: .5 !important;
}
.cid-uCYZZK2wn7 .embla__button.embla__button--prev {
  left: 0;
}
.cid-uCYZZK2wn7 .embla__button.embla__button--next {
  right: 0;
}
.cid-uCYZZK2wn7 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uCYZZK2wn7 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCYZZK2wn7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCYZZK2wn7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCYZZK2wn7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCYZZK2wn7 .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uCYZZK2wn7 .mbr-text {
  color: #3f1819;
}
.cid-uCYZZK2wn7 .item-desc {
  color: #e10a14;
}
.cid-uCYZZK2wn7 .item-text {
  color: #3f1819;
}
.cid-uBGq9fKBbg {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBGq9fKBbg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBGq9fKBbg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGq9fKBbg .text-primary {
  background-color: #009ee3;
}
.cid-uBGq9fKBbg .mbr-section-title {
  color: #454545;
}
.cid-uCe9fYDEdj {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #0050a0;
}
.cid-uCe9fYDEdj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCe9fYDEdj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCe9fYDEdj .text-primary {
  background-color: #009ee3;
}
.cid-uCe9fYDEdj .mbr-section-title {
  color: #777777;
}
.cid-uCe9fYDEdj .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCe9fYDEdj .mbr-text,
.cid-uCe9fYDEdj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCroeL0W1G {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCroeL0W1G .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCroeL0W1G .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCroeL0W1G .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCroeL0W1G .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCroeL0W1G .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCroeL0W1G .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCroeL0W1G .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCroeL0W1G .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCroeL0W1G .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCroeL0W1G .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCroeL0W1G .soc-item a {
  color: #fafafa;
}
.cid-uCroeL0W1G .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCroeL0W1G .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCroeL0W1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCroeL0W1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCroeL0W1G .mbr-tag,
.cid-uCroeL0W1G .social-row {
  color: #bbbbbb;
}
.cid-uCkJxTrNT5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uCkJxTrNT5 nav.navbar {
  position: fixed;
}
.cid-uCkJxTrNT5 .nav-link,
.cid-uCkJxTrNT5 .dropdown-item {
  font-weight: 400;
}
.cid-uCkJxTrNT5 .nav-link:hover,
.cid-uCkJxTrNT5 .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uCkJxTrNT5 .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uCkJxTrNT5 .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-uCkJxTrNT5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCkJxTrNT5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCkJxTrNT5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCkJxTrNT5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCkJxTrNT5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCkJxTrNT5 .nav-link {
  position: relative;
}
.cid-uCkJxTrNT5 .container {
  display: flex;
  margin: auto;
}
.cid-uCkJxTrNT5 .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCkJxTrNT5 .dropdown-menu,
.cid-uCkJxTrNT5 .navbar.opened {
  background: #ffffff !important;
}
.cid-uCkJxTrNT5 .nav-item:focus,
.cid-uCkJxTrNT5 .nav-link:focus {
  outline: none;
}
.cid-uCkJxTrNT5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCkJxTrNT5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCkJxTrNT5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uCkJxTrNT5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCkJxTrNT5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCkJxTrNT5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCkJxTrNT5 .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uCkJxTrNT5 .navbar.opened {
  transition: all .3s;
}
.cid-uCkJxTrNT5 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCkJxTrNT5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCkJxTrNT5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCkJxTrNT5 .navbar.collapsed {
  justify-content: center;
}
.cid-uCkJxTrNT5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCkJxTrNT5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCkJxTrNT5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uCkJxTrNT5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCkJxTrNT5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCkJxTrNT5 .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-uCkJxTrNT5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCkJxTrNT5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCkJxTrNT5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCkJxTrNT5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCkJxTrNT5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCkJxTrNT5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCkJxTrNT5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCkJxTrNT5 .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-uCkJxTrNT5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCkJxTrNT5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCkJxTrNT5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCkJxTrNT5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCkJxTrNT5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCkJxTrNT5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCkJxTrNT5 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uCkJxTrNT5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCkJxTrNT5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCkJxTrNT5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCkJxTrNT5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCkJxTrNT5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCkJxTrNT5 .dropdown-item.active,
.cid-uCkJxTrNT5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCkJxTrNT5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCkJxTrNT5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCkJxTrNT5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCkJxTrNT5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCkJxTrNT5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCkJxTrNT5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCkJxTrNT5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCkJxTrNT5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCkJxTrNT5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCkJxTrNT5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uCkJxTrNT5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCkJxTrNT5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCkJxTrNT5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCkJxTrNT5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCkJxTrNT5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCkJxTrNT5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCkJxTrNT5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCkJxTrNT5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCkJxTrNT5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCkJxTrNT5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCkJxTrNT5 .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-uCkJxTrNT5 .navbar {
    height: 70px;
  }
  .cid-uCkJxTrNT5 .navbar.opened {
    height: auto;
  }
  .cid-uCkJxTrNT5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCkJxUdRD3 {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/firefly-1eec13dd-7c70-4b47-a54b-e62d7984b82b-2000x1556.webp");
}
.cid-uCkJxUdRD3 .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uCkJxUdRD3 .wrap {
  padding: 0 25px;
}
.cid-uCkJxUdRD3 .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uCkJxUdRD3 .mbr-text {
  margin-bottom: 20px;
}
.cid-uCkJxUdRD3 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uCkJxUdRD3 .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uCkJxUdRD3 .container,
  .cid-uCkJxUdRD3 .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCkJxUdRD3 .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uCkJxUdRD3 a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uCkJxUdRD3 .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uCkJxUdRD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkJxUdRD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkJxUVoht {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCkJxUVoht .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkJxUVoht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkJxUVoht .items-wrapper {
  justify-content: center;
}
.cid-uCkJxUVoht .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #060606, #202020 65%, #393939);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uCkJxUVoht .mbr-text,
.cid-uCkJxUVoht .text-wrapper {
  color: #3b6bff;
  text-align: center;
}
.cid-uCkJxVXu3t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uCkJxVXu3t .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uCkJxVXu3t .mbr-section-subtitle {
  color: #707070;
  text-align: center;
}
.cid-uCkJxVXu3t .mbr-text,
.cid-uCkJxVXu3t .link {
  color: #121212;
}
.cid-uCkJxVXu3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkJxVXu3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkJxVXu3t .card-title,
.cid-uCkJxVXu3t .card-box {
  text-align: center;
  color: #009ee3;
}
.cid-uCkJxXukfM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCkJxXukfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCkJxXukfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCkJxXukfM .text-primary {
  background-color: #009ee3;
}
.cid-uCkJxXukfM .mbr-section-title {
  color: #454545;
}
.cid-uCroeL0W1G {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCroeL0W1G .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCroeL0W1G .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCroeL0W1G .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCroeL0W1G .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCroeL0W1G .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCroeL0W1G .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCroeL0W1G .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCroeL0W1G .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCroeL0W1G .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCroeL0W1G .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCroeL0W1G .soc-item a {
  color: #fafafa;
}
.cid-uCroeL0W1G .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCroeL0W1G .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCroeL0W1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCroeL0W1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCroeL0W1G .mbr-tag,
.cid-uCroeL0W1G .social-row {
  color: #bbbbbb;
}
.cid-uCYJVXHTOC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uCYJVXHTOC nav.navbar {
  position: fixed;
}
.cid-uCYJVXHTOC .nav-link,
.cid-uCYJVXHTOC .dropdown-item {
  font-weight: 400;
}
.cid-uCYJVXHTOC .nav-link:hover,
.cid-uCYJVXHTOC .dropdown-item:hover {
  color: #009ee3 !important;
}
.cid-uCYJVXHTOC .navbar-short {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}
.cid-uCYJVXHTOC .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-uCYJVXHTOC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCYJVXHTOC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCYJVXHTOC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCYJVXHTOC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCYJVXHTOC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCYJVXHTOC .nav-link {
  position: relative;
}
.cid-uCYJVXHTOC .container {
  display: flex;
  margin: auto;
}
.cid-uCYJVXHTOC .iconfont-wrapper {
  color: #121212 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCYJVXHTOC .dropdown-menu,
.cid-uCYJVXHTOC .navbar.opened {
  background: #ffffff !important;
}
.cid-uCYJVXHTOC .nav-item:focus,
.cid-uCYJVXHTOC .nav-link:focus {
  outline: none;
}
.cid-uCYJVXHTOC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCYJVXHTOC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCYJVXHTOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uCYJVXHTOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCYJVXHTOC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCYJVXHTOC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCYJVXHTOC .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uCYJVXHTOC .navbar.opened {
  transition: all .3s;
}
.cid-uCYJVXHTOC .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCYJVXHTOC .navbar .navbar-logo img {
  width: auto;
}
.cid-uCYJVXHTOC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCYJVXHTOC .navbar.collapsed {
  justify-content: center;
}
.cid-uCYJVXHTOC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCYJVXHTOC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCYJVXHTOC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uCYJVXHTOC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCYJVXHTOC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCYJVXHTOC .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-uCYJVXHTOC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCYJVXHTOC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCYJVXHTOC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCYJVXHTOC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCYJVXHTOC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCYJVXHTOC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCYJVXHTOC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCYJVXHTOC .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-uCYJVXHTOC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCYJVXHTOC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCYJVXHTOC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCYJVXHTOC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCYJVXHTOC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCYJVXHTOC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCYJVXHTOC .navbar.navbar-short {
  min-height: 80px;
}
.cid-uCYJVXHTOC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCYJVXHTOC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCYJVXHTOC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCYJVXHTOC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCYJVXHTOC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCYJVXHTOC .dropdown-item.active,
.cid-uCYJVXHTOC .dropdown-item:active {
  background-color: transparent;
}
.cid-uCYJVXHTOC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCYJVXHTOC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCYJVXHTOC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCYJVXHTOC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCYJVXHTOC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCYJVXHTOC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCYJVXHTOC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCYJVXHTOC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCYJVXHTOC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCYJVXHTOC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #121212;
}
.cid-uCYJVXHTOC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCYJVXHTOC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYJVXHTOC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYJVXHTOC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCYJVXHTOC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYJVXHTOC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCYJVXHTOC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCYJVXHTOC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYJVXHTOC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCYJVXHTOC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCYJVXHTOC .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-uCYJVXHTOC .navbar {
    height: 70px;
  }
  .cid-uCYJVXHTOC .navbar.opened {
    height: auto;
  }
  .cid-uCYJVXHTOC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCYJVYjz7K {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uCYJVYjz7K .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uCYJVYjz7K .wrap {
  padding: 0 25px;
}
.cid-uCYJVYjz7K .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uCYJVYjz7K .mbr-text {
  margin-bottom: 20px;
}
.cid-uCYJVYjz7K .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uCYJVYjz7K .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uCYJVYjz7K .container,
  .cid-uCYJVYjz7K .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCYJVYjz7K .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uCYJVYjz7K a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uCYJVYjz7K .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uCYJVYjz7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCYJVYjz7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCYJW14rfO {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #121212;
}
.cid-uCYJW14rfO .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 12rem;
}
@media (max-width: 991px) {
  .cid-uCYJW14rfO .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCYJW14rfO .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-uCYJW14rfO .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-uCYJW14rfO .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-uCYJW14rfO .footer-top {
  border-bottom: 2px solid #00ccff;
}
.cid-uCYJW14rfO .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-uCYJW14rfO .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-uCYJW14rfO .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-uCYJW14rfO .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-uCYJW14rfO .soc-item a {
  color: #fafafa;
}
.cid-uCYJW14rfO .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-uCYJW14rfO .soc-item span:hover {
  border-color: #00ccff;
  color: #00ccff;
}
.cid-uCYJW14rfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCYJW14rfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCYJW14rfO .mbr-tag,
.cid-uCYJW14rfO .social-row {
  color: #bbbbbb;
}
.cid-uCYKclDjMg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uCYKclDjMg .mbr-text,
.cid-uCYKclDjMg blockquote {
  color: #767676;
}
