body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #073b4c !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #0a6101 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0a6101 !important;
  border-color: #0a6101 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #021500 !important;
  border-color: #021500 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #021500 !important;
  border-color: #021500 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #073b4c;
  border-color: #073b4c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #0a6101;
  border-color: #0a6101;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0a6101 !important;
  border-color: #0a6101 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #073b4c !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #0a6101 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #073b4c;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #0a6101;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4ac6ee;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #17df02;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !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: #ff3366 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23149dcc' %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.3;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trXFMA9h5O {
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-trXFMA9h5O .mbr-section-title {
  color: #ffffff;
}
.cid-trXFMA9h5O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trXFMA9h5O .mbr-text,
.cid-trXFMA9h5O .mbr-section-btn {
  color: #ffffff;
}
.cid-tth7ZjA5gP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tth7ZjA5gP h3 {
  font-weight: 300;
}
.cid-tth7ZjA5gP .card-img {
  width: initial;
}
.cid-tth7ZjA5gP .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tth7ZjA5gP .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-tth7ZjA5gP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tth7ZjA5gP .mbr-section-subtitle {
  color: #000000;
}
.cid-tth7ZjA5gP .mbr-text {
  color: #000000;
}
.cid-tth7ZjA5gP .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tth7ZjA5gP .mbr-al-i-c {
  align-items: center;
}
.cid-tth7ZjA5gP .card-title,
.cid-tth7ZjA5gP .card-img {
  text-align: left;
}
.cid-trXQCkx8xV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-trXQCkx8xV .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trXQCkx8xV .section-text {
  padding: 2rem 0;
}
.cid-trXQCkx8xV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trXQCkx8xV .inner-container {
    width: 100% !important;
  }
}
.cid-rGVkNbTZYF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1841x587.jpg");
}
.cid-rGVkNbTZYF .card-box {
  padding: 0 2rem;
}
.cid-rGVkNbTZYF .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rGVkNbTZYF .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rGVkNbTZYF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rGVkNbTZYF p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rGVkNbTZYF .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rGVkNbTZYF .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rGVkNbTZYF .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rGVkNbTZYF .card-title {
  text-align: center;
}
.cid-rmGqFaEVzQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1841x587.jpg");
}
.cid-rmGqFaEVzQ .card-box {
  padding: 0 2rem;
}
.cid-rmGqFaEVzQ .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rmGqFaEVzQ .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rmGqFaEVzQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rmGqFaEVzQ p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rmGqFaEVzQ .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rmGqFaEVzQ .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rmGqFaEVzQ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rmGqFaEVzQ .card-title {
  text-align: center;
}
.cid-unzA3oItPH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/aoglonass-less-banner-1920x500.jpg");
}
.cid-unzA3oItPH P {
  color: #767676;
}
.cid-unzA3oItPH .mbr-text,
.cid-unzA3oItPH .mbr-section-btn {
  color: #ffffff;
}
.cid-unzA3oItPH H1 {
  color: #ffffff;
}
.cid-ttROyAZhzn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partners-card-back-yellow-1900x422.jpg");
}
.cid-ttROyAZhzn P {
  color: #767676;
}
.cid-ttROyAZhzn .mbr-text,
.cid-ttROyAZhzn .mbr-section-btn {
  color: #000000;
}
.cid-tpVazLnicl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-tpVazLnicl .form-control,
.cid-tpVazLnicl .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-tpVazLnicl .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-tpVazLnicl textarea.form-control {
  min-height: 188px;
}
.cid-tpVazLnicl .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-tpVazLnicl .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu2Gzzwqnh {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu2Gzzwqnh .mbr-text,
.cid-tu2Gzzwqnh blockquote {
  color: #767676;
}
.cid-tu2Gzzwqnh .mbr-text P {
  text-align: left;
}
.cid-tu2Gzzwqnh .mbr-text {
  color: #ffffff;
}
.cid-ttVNlRJWjU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/vehicle-monitoring-top-banner-1920x414.jpg");
}
.cid-ttVNlRJWjU .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-ttVNlRJWjU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ttVNlRJWjU .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ttVNlRJWjU .mbr-text {
    text-align: center;
  }
}
.cid-ttVNYD39TC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ttVNYD39TC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-ttVNYD39TC p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-ttVNYD39TC .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-ttVNYD39TC .mbr-section-btn a {
  margin: 0;
}
.cid-ttVNYD39TC .mbr-text {
  color: #767676;
}
.cid-ttVNYD39TC .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-ttVNYD39TC .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-ttVNYD39TC .card-title {
  text-align: center;
  color: #000000;
}
.cid-ttVNYD39TC .mbr-text,
.cid-ttVNYD39TC .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ttVNYD39TC H2 {
  text-align: center;
}
.cid-ttVNYD39TC .mbr-section-subtitle {
  text-align: center;
}
.cid-ttVOcAllIB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ttVOcAllIB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-ttVOcAllIB p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-ttVOcAllIB .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-ttVOcAllIB .mbr-section-btn a {
  margin: 0;
}
.cid-ttVOcAllIB .mbr-text {
  color: #767676;
}
.cid-ttVOcAllIB .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-ttVOcAllIB .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-ttVOcAllIB .card-title {
  text-align: center;
}
.cid-ttVOcAllIB .mbr-text,
.cid-ttVOcAllIB .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-utUyTcH8qr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyTcH8qr .form-control,
.cid-utUyTcH8qr .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyTcH8qr .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyTcH8qr textarea.form-control {
  min-height: 188px;
}
.cid-utUyTcH8qr .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyTcH8qr .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r0LtqYmAc3 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/banner-trackingm-1-1900x900.jpg");
}
.cid-tpPg82egY1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tpPg82egY1 .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tpPg82egY1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tpPg82egY1 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tpPg82egY1 .mbr-text {
    text-align: center;
  }
}
.cid-tpPg82egY1 .mbr-text,
.cid-tpPg82egY1 .mbr-section-btn {
  color: #000000;
}
.cid-tpPg82egY1 H1 {
  color: #000000;
}
.cid-rUUczZpQ1N {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rUUczZpQ1N .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rUUczZpQ1N .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rUUczZpQ1N .mbr-text {
    text-align: center;
  }
}
.cid-rUUczZpQ1N .mbr-text,
.cid-rUUczZpQ1N .mbr-section-btn {
  color: #000000;
}
.cid-rUUczZpQ1N H1 {
  color: #000000;
}
.cid-r0LuGuV0jn {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-r0LuGuV0jn .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-r0LuGuV0jn .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r0LuGuV0jn .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-r0LuGuV0jn .mbr-text {
    text-align: center;
  }
}
.cid-r0LuGuV0jn .mbr-text,
.cid-r0LuGuV0jn .mbr-section-btn {
  color: #000000;
}
.cid-r0LuGuV0jn H1 {
  color: #000000;
}
.cid-r0LsbF2gti {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-r0LsbF2gti .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r0LsbF2gti .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-r0LsbF2gti .mbr-text {
    text-align: center;
  }
}
.cid-r0LsbF2gti .mbr-text,
.cid-r0LsbF2gti .mbr-section-btn {
  color: #000000;
}
.cid-r0LsbF2gti H1 {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r0zQHCsPUY {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/monitoring-2-2000x1331.jpg");
}
.cid-r0zQHCsPUY h2 {
  text-align: left;
}
.cid-r0zQHCsPUY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-r0zQHCsPUY p {
  color: #767676;
  text-align: left;
}
.cid-r0zQHCsPUY .aside-content {
  flex-basis: 100%;
}
.cid-r0zQHCsPUY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-r0zQHCsPUY .media {
  margin: initial;
  align-items: center;
}
.cid-r0zQHCsPUY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-r0zQHCsPUY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-r0zQHCsPUY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-r0zQHCsPUY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r0zQHCsPUY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-r0zQHCsPUY .card-img span {
    font-size: 40px !important;
  }
}
.cid-r0zQHCsPUY P {
  color: #000000;
}
.cid-tho6jznNnf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partners-card-back-1900x422.jpg");
}
.cid-rz8JZXwRrJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rz8JZXwRrJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rz8JZXwRrJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rz8JZXwRrJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rz8JZXwRrJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rz8JZXwRrJ .row > .row {
  display: block;
}
.cid-rz8JZXwRrJ .mbr-gallery-item {
  width: 100%;
}
.cid-rz8JZXwRrJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rz8JZXwRrJ .mbr-gallery-item > div {
  position: relative;
}
.cid-rz8JZXwRrJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rz8JZXwRrJ .mbr-gallery-item > div:hover:before {
  opacity: 0.9 !important;
}
.cid-rz8JZXwRrJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rz8JZXwRrJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.9;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-r0zSgyXQXu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r0zSgyXQXu .counter-container {
  color: #767676;
}
.cid-r0zSgyXQXu .counter-container ul {
  margin-bottom: 0;
}
.cid-r0zSgyXQXu .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-r0zSgyXQXu .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-r0zSgyXQXu .mbr-text UL {
  color: #232323;
}
.cid-r0zPXKKmon {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1841x587.jpg");
}
.cid-r0zPXKKmon h2 {
  text-align: center;
}
.cid-r0zPXKKmon h3 {
  text-align: center;
  font-weight: 300;
}
.cid-r0zPXKKmon p {
  color: #767676;
}
.cid-r0zPXKKmon .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-r0zPXKKmon .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-r0zPXKKmon .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-r0zPXKKmon .mbr-section-subtitle {
  color: #232323;
}
.cid-r0zPXKKmon .card-title {
  font-weight: 500;
}
.cid-r0zPXKKmon .card-img {
  text-align: inherit;
}
.cid-r0zPXKKmon .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-r0zPXKKmon .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-r0zPXKKmon .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-r0zPXKKmon .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-r0zPXKKmon .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-r0zPXKKmon .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-r0zPXKKmon .mbr-section-text {
  color: #232323;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT2HTcXXxQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/sensors-tire-trucks-1360x768.jpg");
}
.cid-r0HNOBFUqc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-r0HNOBFUqc .mbr-section-subtitle {
  color: #000000;
}
.cid-r0HNOBFUqc .mbr-text {
  color: #000000;
}
.cid-r0HNOBFUqc .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-r0HNOBFUqc .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-r0HNOBFUqc .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-r0HNOBFUqc .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-r0HNOBFUqc .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-r0HNOBFUqc .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-r0HNOBFUqc .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-r0HNOBFUqc .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-r0HNOBFUqc .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-r0HNOBFUqc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-r0HNOBFUqc .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-r0HNOBFUqc .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-r0HNOBFUqc .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-r0HNOBFUqc .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-r0HNOBFUqc .card-title {
  text-align: center;
}
.cid-r0HOc3wrzc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-r0HOc3wrzc .mbr-section-subtitle {
  color: #767676;
}
.cid-r0HOc3wrzc .mbr-text {
  color: #000000;
}
.cid-r0HOc3wrzc .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-r0HOc3wrzc .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-r0HOc3wrzc .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-r0HOc3wrzc .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-r0HOc3wrzc .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-r0HOc3wrzc .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-r0HOc3wrzc .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-r0HOc3wrzc .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-r0HOc3wrzc .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-r0HOc3wrzc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-r0HOc3wrzc .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-r0HOc3wrzc .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-r0HOc3wrzc .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-r0HOc3wrzc .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-r0HOc3wrzc .card-title {
  text-align: center;
}
.cid-r0HOj8VJBr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-r0HOj8VJBr .mbr-section-subtitle {
  color: #767676;
}
.cid-r0HOj8VJBr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-r0HOj8VJBr .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-r0HOj8VJBr .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-r0HOj8VJBr .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-r0HOj8VJBr .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-r0HOj8VJBr .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-r0HOj8VJBr .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-r0HOj8VJBr .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-r0HOj8VJBr .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-r0HOj8VJBr .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-r0HOj8VJBr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-r0HOj8VJBr .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-r0HOj8VJBr .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-r0HOj8VJBr .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-r0HOj8VJBr .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-r0HOj8VJBr .card-title {
  text-align: center;
}
.cid-utV4T2E51h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-utV4T2E51h .mbr-section-subtitle,
.cid-utV4T2E51h .mbr-text {
  color: #767676;
}
.cid-utV4T2E51h .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-utV4T2E51h .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-utV4T2E51h .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-utV4T2E51h .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-utV4T2E51h .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-utV4T2E51h .card-wrapper .card-img img {
  width: 100%;
}
.cid-utV4T2E51h .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-utV4T2E51h .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-utV4T2E51h .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-utV4T2E51h .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-utV4T2E51h .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-utV4T2E51h .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-utV4T2E51h .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-utV4T2E51h .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-utV4T2E51h .card-title {
  text-align: center;
}
.cid-utV4T2E51h .mbr-text {
  color: #000000;
}
.cid-utUBlHCdRC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBlHCdRC .form-control,
.cid-utUBlHCdRC .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBlHCdRC .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBlHCdRC textarea.form-control {
  min-height: 188px;
}
.cid-utUBlHCdRC .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBlHCdRC .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qYdHmtgX9s {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-qYdHoGYvty {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qYdHoGYvty .mbr-text,
.cid-qYdHoGYvty blockquote {
  color: #767676;
}
.cid-qYdHoGYvty .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r0RBfCW5vn {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1900x565.jpg");
}
.cid-saWavHZGAS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-saWavHZGAS .mbr-text,
.cid-saWavHZGAS blockquote {
  color: #767676;
}
.cid-saWavHZGAS .mbr-text {
  color: #000000;
}
.cid-saWavHZGAS .mbr-text P {
  text-align: center;
}
.cid-r0RDHqC5MO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-r0RDHqC5MO .mbr-text {
  color: #000000;
}
.cid-smU2kIM1o9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-autograf-back-3-1920x910.jpg");
}
.cid-smU2kIM1o9 .testimonial-text {
  font-style: italic;
  color: #000000;
  font-weight: 300;
}
.cid-smU2kIM1o9 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-smU2kIM1o9 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-smU2kIM1o9 .mbr-figure,
  .cid-smU2kIM1o9 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-r0RAZ63Jpq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r0RAZ63Jpq h3 {
  text-align: center;
}
.cid-r0RAZ63Jpq .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-r0RAZ63Jpq .mbr-content-text {
  color: #000000;
}
.cid-r0RAZ63Jpq .panel-item {
  background: #ffffff;
}
.cid-r0RAZ63Jpq .card {
  word-wrap: break-word;
}
.cid-r0RAZ63Jpq .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-r0RAZ63Jpq H3 {
  color: #073b4c;
}
.cid-soGOQWlLMR {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-soGOQWlLMR .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-soGOQWlLMR .main .mbr-section-btn {
  text-align: right;
}
.cid-soGOQWlLMR .btn {
  margin: 0 0 .5rem 0;
}
.cid-soGOQWlLMR H2 {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r3rI89e7np {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-r3rI89e7np SPAN {
  color: #ffffff;
}
.cid-to1bqdMuDv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-to1bqdMuDv .mbr-section-subtitle {
  color: #232323;
}
.cid-to1bqdMuDv .btn {
  margin: 0 0 .5rem 0;
}
.cid-r3rKAj153G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3rKAj153G .mbr-section-subtitle {
  color: #232323;
}
.cid-r3rKAj153G .btn {
  margin: 0 0 .5rem 0;
}
.cid-sMh7H0vMuU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sMh7H0vMuU .mbr-section-subtitle {
  color: #232323;
}
.cid-sMh7H0vMuU .btn {
  margin: 0 0 .5rem 0;
}
.cid-sUQtfSZKB1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sUQtfSZKB1 .mbr-section-subtitle {
  color: #232323;
}
.cid-sUQtfSZKB1 .btn {
  margin: 0 0 .5rem 0;
}
.cid-r3rP2yWuLy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-r3rP2yWuLy .mbr-section-subtitle {
  color: #232323;
}
.cid-r3rP2yWuLy .btn {
  margin: 0 0 .5rem 0;
}
.cid-roaUkBAluK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-roaUkBAluK .mbr-section-subtitle {
  color: #232323;
}
.cid-roaUkBAluK .btn {
  margin: 0 0 .5rem 0;
}
.cid-rbqbb9RkPX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rbqbb9RkPX .mbr-section-subtitle {
  color: #232323;
}
.cid-rbqbb9RkPX .btn {
  margin: 0 0 .5rem 0;
}
.cid-rSgZGuytlh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSgZGuytlh .mbr-section-subtitle {
  color: #232323;
}
.cid-rSgZGuytlh .btn {
  margin: 0 0 .5rem 0;
}
.cid-sY3TNPvhpl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sY3TNPvhpl .mbr-section-subtitle {
  color: #232323;
}
.cid-sY3TNPvhpl .btn {
  margin: 0 0 .5rem 0;
}
.cid-spa50dbzF9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spa50dbzF9 .mbr-section-subtitle {
  color: #232323;
}
.cid-spa50dbzF9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-r3rPff9Cd4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-r3rPff9Cd4 .mbr-section-subtitle {
  color: #232323;
}
.cid-r3rPff9Cd4 .btn {
  margin: 0 0 .5rem 0;
}
.cid-roaUQuwcqL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-roaUQuwcqL .mbr-section-subtitle {
  color: #232323;
}
.cid-roaUQuwcqL .btn {
  margin: 0 0 .5rem 0;
}
.cid-roaUReAk1X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-roaUReAk1X .mbr-section-subtitle {
  color: #232323;
}
.cid-roaUReAk1X .btn {
  margin: 0 0 .5rem 0;
}
.cid-rSbRnFdKj1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSbRnFdKj1 .mbr-section-subtitle {
  color: #232323;
}
.cid-rSbRnFdKj1 .btn {
  margin: 0 0 .5rem 0;
}
.cid-rUZ2blCEEH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rUZ2blCEEH .mbr-section-subtitle {
  color: #232323;
}
.cid-rUZ2blCEEH .btn {
  margin: 0 0 .5rem 0;
}
.cid-sn6r4Fk9HL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sn6r4Fk9HL .mbr-section-subtitle {
  color: #232323;
}
.cid-sn6r4Fk9HL .btn {
  margin: 0 0 .5rem 0;
}
.cid-teXDwQFdWm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-teXDwQFdWm .mbr-section-subtitle {
  color: #232323;
}
.cid-teXDwQFdWm .btn {
  margin: 0 0 .5rem 0;
}
.cid-soBiHuodPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soBiHuodPp .mbr-section-subtitle {
  color: #232323;
}
.cid-soBiHuodPp .btn {
  margin: 0 0 .5rem 0;
}
.cid-sMhECkVtsW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sMhECkVtsW .mbr-section-subtitle {
  color: #232323;
}
.cid-sMhECkVtsW .btn {
  margin: 0 0 .5rem 0;
}
.cid-sMhECS6Ftg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sMhECS6Ftg .mbr-section-subtitle {
  color: #232323;
}
.cid-sMhECS6Ftg .btn {
  margin: 0 0 .5rem 0;
}
.cid-r3vULcdjmz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-r3vULcdjmz .mbr-section-subtitle {
  color: #232323;
}
.cid-r3vULcdjmz .btn {
  margin: 0 0 .5rem 0;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdxXtLvBB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdxXtLvBB .mbr-text,
.cid-rzdxXtLvBB blockquote {
  color: #767676;
}
.cid-rzdxXtLvBB .mbr-text P {
  text-align: left;
}
.cid-rzdxXtLvBB .mbr-text {
  color: #ffffff;
}
.cid-r3rR0sHl4L {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-r3rR0sHl4L DIV {
  color: #232323;
}
.cid-r3rR0sHl4L SPAN {
  color: #232323;
}
.cid-r3rR0sHl4L .mbr-section-subtitle {
  color: #232323;
}
.cid-r3rR0sHl4L H2 {
  color: #000000;
}
.cid-r3rQe6MZkC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3rQe6MZkC .mbr-text,
.cid-r3rQe6MZkC blockquote {
  color: #767676;
}
.cid-r3rQe6MZkC .mbr-text I {
  color: #232323;
}
.cid-r3rQe6MZkC .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-r3rQe6MZkC .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdymPIRBL {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdymPIRBL .mbr-text,
.cid-rzdymPIRBL blockquote {
  color: #767676;
}
.cid-rzdymPIRBL .mbr-text P {
  text-align: left;
}
.cid-rzdymPIRBL .mbr-text {
  color: #ffffff;
}
.cid-r3sDrvhj9K {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-r3sDrvhj9K DIV {
  color: #232323;
}
.cid-r3sDrvhj9K SPAN {
  color: #232323;
}
.cid-r3sDrvhj9K .mbr-section-subtitle {
  color: #232323;
}
.cid-r3sDrvhj9K H2 {
  color: #000000;
}
.cid-r3sDrwOO9r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3sDrwOO9r .mbr-text,
.cid-r3sDrwOO9r blockquote {
  color: #767676;
}
.cid-r3sDrwOO9r .mbr-text I {
  color: #232323;
}
.cid-r3sDrwOO9r .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-r3sDrwOO9r .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdyBJCeyJ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdyBJCeyJ .mbr-text,
.cid-rzdyBJCeyJ blockquote {
  color: #767676;
}
.cid-rzdyBJCeyJ .mbr-text P {
  text-align: left;
}
.cid-rzdyBJCeyJ .mbr-text {
  color: #ffffff;
}
.cid-r3sFGXN2iI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-r3sFGXN2iI DIV {
  color: #232323;
}
.cid-r3sFGXN2iI SPAN {
  color: #232323;
}
.cid-r3sFGXN2iI .mbr-section-subtitle {
  color: #232323;
}
.cid-r3sFGXN2iI H2 {
  color: #000000;
}
.cid-r3sFGYZXS1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3sFGYZXS1 .mbr-text,
.cid-r3sFGYZXS1 blockquote {
  color: #767676;
}
.cid-r3sFGYZXS1 .mbr-text I {
  color: #232323;
}
.cid-r3sFGYZXS1 .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-r3sFGYZXS1 .mbr-text DIV {
  text-align: left;
}
.cid-r3sGBUlnrO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3sGBUlnrO DIV {
  color: #232323;
}
.cid-r3sGBUlnrO SPAN {
  color: #232323;
}
.cid-r3sGBUlnrO .mbr-section-subtitle {
  color: #232323;
}
.cid-r3sH8ZtKRm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3sH8ZtKRm .mbr-text,
.cid-r3sH8ZtKRm blockquote {
  color: #767676;
}
.cid-r3sH8ZtKRm .mbr-text {
  color: #232323;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpUvJXo6V2 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tpUvJXo6V2 .mbr-text,
.cid-tpUvJXo6V2 blockquote {
  color: #767676;
}
.cid-tpUvJXo6V2 .mbr-text P {
  text-align: left;
}
.cid-tpUvJXo6V2 .mbr-text {
  color: #ffffff;
}
.cid-soGOd2rfjs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #465052;
}
.cid-soGOd2rfjs .mbr-section-subtitle {
  color: #767676;
}
.cid-soGOd2rfjs H2 {
  color: #ffffff;
}
.cid-r3vOlCbGGY {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-snooDBDStX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-snooDBDStX .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-snooDBDStX .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-snooDBDStX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-snooDBDStX .inner-container {
    width: 100% !important;
  }
}
.cid-r3vO0UimOc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r3vO0UimOc .mbr-text,
.cid-r3vO0UimOc blockquote {
  color: #767676;
}
.cid-r3vO0UimOc .mbr-text {
  color: #232323;
}
.cid-rbwudToxGz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-rbwudToxGz .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rbwudToxGz .section-text {
  padding: 2rem 0;
  color: #f9f9f9;
}
.cid-rbwudToxGz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rbwudToxGz .inner-container {
    width: 100% !important;
  }
}
.cid-utUGIorJUw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUGIorJUw .form-control,
.cid-utUGIorJUw .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUGIorJUw .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUGIorJUw textarea.form-control {
  min-height: 188px;
}
.cid-utUGIorJUw .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUGIorJUw .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r7bO4PVfIo {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-ror5pvlW24 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-ror5pvlW24 .mbr-text,
.cid-ror5pvlW24 blockquote {
  color: #767676;
}
.cid-ror5pvlW24 .mbr-text P {
  color: #000000;
}
.cid-r7bQyafOS4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-r7bQyafOS4 .google-map {
  height: 25rem;
  position: relative;
}
.cid-r7bQyafOS4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r7bQyafOS4 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-r7bQyafOS4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r7bQyafOS4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQhA100rlG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-tQhA100rlG .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tQhA100rlG .main .mbr-section-btn {
  text-align: right;
}
.cid-tQhA100rlG .btn {
  margin: 0 0 .5rem 0;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdyucoORh {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdyucoORh .mbr-text,
.cid-rzdyucoORh blockquote {
  color: #767676;
}
.cid-rzdyucoORh .mbr-text P {
  text-align: left;
}
.cid-rzdyucoORh .mbr-text {
  color: #ffffff;
}
.cid-rbqbSifPza {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-rbqbSifPza DIV {
  color: #232323;
}
.cid-rbqbSifPza SPAN {
  color: #232323;
}
.cid-rbqbSifPza .mbr-section-subtitle {
  color: #232323;
}
.cid-rbqbSifPza H2 {
  color: #000000;
}
.cid-rbqbSkwp5j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rbqbSkwp5j .mbr-text,
.cid-rbqbSkwp5j blockquote {
  color: #767676;
}
.cid-rbqbSkwp5j .mbr-text I {
  color: #232323;
}
.cid-rbqbSkwp5j .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rbqbSkwp5j .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sdQG6vd7ii {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/video-monitoring-top-1900x495.jpg");
}
.cid-sdQG6vd7ii .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sdQG6vd7ii .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdQG6vd7ii .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdQG6vd7ii .mbr-text {
    text-align: center;
  }
}
.cid-sdQG6vd7ii .mbr-text,
.cid-sdQG6vd7ii .mbr-section-btn {
  color: #ffffff;
}
.cid-tmMVbpp5HZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partners-card-back-1900x422.jpg");
}
.cid-sfgmhOl7N5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfgmhOl7N5 .mbr-section-subtitle {
  color: #767676;
}
.cid-sfgmhOl7N5 H2 {
  color: #073b4c;
}
.cid-sfgmlN2WqW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfgmlN2WqW .mbr-text {
  color: #000000;
}
.cid-sfgmjJ773Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sfgmjJ773Q .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sfgmjJ773Q .section-text {
  padding: 2rem 0;
}
.cid-sfgmjJ773Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sfgmjJ773Q .inner-container {
    width: 100% !important;
  }
}
.cid-sfgnwWMwLy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sfgnwWMwLy .mbr-text,
.cid-sfgnwWMwLy blockquote {
  color: #767676;
}
.cid-sfgnwWMwLy .mbr-text {
  color: #000000;
}
.cid-sfgnwWMwLy .mbr-text P {
  text-align: center;
}
.cid-to0qu89UMl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
.cid-to0qu89UMl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-to0qu89UMl p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-to0qu89UMl .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-to0qu89UMl .mbr-section-btn a {
  margin: 0;
}
.cid-to0qu89UMl .mbr-text {
  color: #767676;
}
.cid-to0qu89UMl .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-to0qu89UMl .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-to0qu89UMl H2 {
  text-align: center;
}
.cid-to0qu89UMl .mbr-section-subtitle {
  text-align: center;
}
.cid-to0qu89UMl .mbr-text,
.cid-to0qu89UMl .mbr-section-btn {
  color: #000000;
}
.cid-sfgp2VhNiP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
.cid-sfgp2VhNiP .mbr-section-subtitle {
  color: #767676;
}
.cid-sfgp2VhNiP .btn {
  margin: 0 0 .5rem 0;
}
.cid-sfgp2VhNiP H2 {
  color: #ffffff;
  text-align: center;
}
.cid-smE6YAMxEA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-smE6YAMxEA .mbr-section-subtitle,
.cid-smE6YAMxEA .mbr-text {
  color: #767676;
}
.cid-smE6YAMxEA .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-smE6YAMxEA .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-smE6YAMxEA .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-smE6YAMxEA .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-smE6YAMxEA .card-wrapper .card-img img {
  width: 100%;
}
.cid-smE6YAMxEA .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-smE6YAMxEA .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-smE6YAMxEA .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-smE6YAMxEA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-smE6YAMxEA .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-smE6YAMxEA .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-smE6YAMxEA .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-smE6YAMxEA .card-title {
  color: #000000;
  text-align: center;
}
.cid-smE6YAMxEA .mbr-section-subtitle {
  color: #000000;
}
.cid-sn7mujQBK8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sn7mujQBK8 .mbr-section-subtitle,
.cid-sn7mujQBK8 .mbr-text {
  color: #767676;
}
.cid-sn7mujQBK8 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sn7mujQBK8 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sn7mujQBK8 .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sn7mujQBK8 .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sn7mujQBK8 .card-wrapper .card-img img {
  width: 100%;
}
.cid-sn7mujQBK8 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sn7mujQBK8 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sn7mujQBK8 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sn7mujQBK8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sn7mujQBK8 .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sn7mujQBK8 .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sn7mujQBK8 .mbr-section-subtitle {
  color: #000000;
}
.cid-sn7mujQBK8 .card-title {
  text-align: center;
}
.cid-sn7mujQBK8 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sn7schFH76 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sn7schFH76 .mbr-section-subtitle,
.cid-sn7schFH76 .mbr-text {
  color: #767676;
}
.cid-sn7schFH76 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sn7schFH76 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sn7schFH76 .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sn7schFH76 .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-sn7schFH76 .card-wrapper .card-img img {
  width: 100%;
}
.cid-sn7schFH76 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sn7schFH76 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sn7schFH76 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sn7schFH76 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sn7schFH76 .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sn7schFH76 .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sn7schFH76 .card-title {
  text-align: center;
}
.cid-sn7schFH76 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sn7XBRIq0f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-sn7XBRIq0f P {
  color: #767676;
}
.cid-sn7XBRIq0f H1 {
  color: #000000;
}
.cid-utUE1sRdUS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUE1sRdUS .form-control,
.cid-utUE1sRdUS .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUE1sRdUS .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUE1sRdUS textarea.form-control {
  min-height: 188px;
}
.cid-utUE1sRdUS .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUE1sRdUS .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rmFydTuPO7 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/agro-top-1-1920x1080.jpg");
}
@media (min-width: 992px) {
  .cid-rmFydTuPO7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rmFydTuPO7 .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-rmFBTTLTZ5 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #073b4c;
}
.cid-rmFBTTLTZ5 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rmFBTTLTZ5 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #ffffff;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rmFBTTLTZ5 .nav-tabs .nav-link:hover {
  background-color: #f7ed4a;
}
.cid-rmFBTTLTZ5 .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #f7ed4a;
}
.cid-rmFBTTLTZ5 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  border: none;
  background: #f7ed4a;
}
.cid-rmFBTTLTZ5 .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rmFBTTLTZ5 .mbr-section-subtitle {
  color: #767676;
}
.cid-rmFBTTLTZ5 p {
  color: #767676;
}
.cid-rmFBTTLTZ5 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rmFBTTLTZ5 .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rmFBTTLTZ5 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rmFBTTLTZ5 P {
  color: #ffffff;
}
.cid-rnB64pA6g1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rnB64pA6g1 .mbr-section-subtitle {
  color: #000000;
}
.cid-rnB6FojhsS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rnB6FojhsS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rnB6FojhsS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rnB6FojhsS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rnB6FojhsS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rnB6FojhsS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rnB6FojhsS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rnB6FojhsS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rnB6FojhsS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rnB6FojhsS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rmFE2itFFv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e4d295;
}
.cid-rmFE2itFFv .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rmFE2itFFv .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rmFE2itFFv .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rmFE2itFFv .mbr-text {
    text-align: center;
  }
}
.cid-rmFE2itFFv .mbr-text,
.cid-rmFE2itFFv .mbr-section-btn {
  color: #000000;
}
.cid-rmFE2itFFv H1 {
  color: #000000;
}
.cid-ssbA39bxIq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-ssbA39bxIq .mbr-text,
.cid-ssbA39bxIq blockquote {
  color: #767676;
}
.cid-ssbA39bxIq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rmGiDW2KxP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/agro-top-1-1920x1080.jpg");
}
.cid-rmGiDW2KxP h2 {
  text-align: center;
}
.cid-rmGiDW2KxP h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rmGiDW2KxP p {
  color: #767676;
}
.cid-rmGiDW2KxP img {
  object-fit: cover;
}
.cid-rmGiDW2KxP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rmGiDW2KxP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rmGiDW2KxP .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rmGiDW2KxP .mbr-section-subtitle {
  color: #767676;
}
.cid-rmGiDW2KxP .card-title {
  font-weight: 500;
}
.cid-rmGiDW2KxP .card-img {
  text-align: inherit;
}
.cid-rmGiDW2KxP .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rmGiDW2KxP .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-rmGiDW2KxP .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rmGiDW2KxP .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rmGiDW2KxP .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-rmGiDW2KxP .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-rmGiDW2KxP .mbr-section-text {
  color: #000000;
}
.cid-rVgCaXQP2s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-tacho-green.svg");
}
.cid-rVgCaXQP2s .mbr-section-subtitle {
  color: #767676;
}
.cid-rVgCaXQP2s .btn {
  margin: 0 0 .5rem 0;
}
.cid-rVgCaXQP2s H2 {
  color: #ffffff;
}
.cid-utUBFLY25c {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBFLY25c .form-control,
.cid-utUBFLY25c .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBFLY25c .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBFLY25c textarea.form-control {
  min-height: 188px;
}
.cid-utUBFLY25c .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBFLY25c .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rmR4V4PAw1 {
  background-image: url("../../../assets/images/ic-company-ru-1900x1069.jpg");
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tafYD4ik2z {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1-1841x587.jpg");
}
.cid-sXvsrSQwVT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #073b4c;
}
.cid-sXvsqWD2in {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sXvsqWD2in .mbr-text,
.cid-sXvsqWD2in blockquote {
  color: #767676;
}
.cid-sXvsqWD2in .mbr-text {
  color: #000000;
}
.cid-sXvsqWD2in .mbr-text P {
  text-align: center;
}
.cid-taMV1c1Ue7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-taMV1c1Ue7 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-taMV1c1Ue7 .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-taMV1c1Ue7 .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-taMV1c1Ue7 .separline {
  position: relative;
}
.cid-taMV1c1Ue7 .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-taMV1c1Ue7 .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-tYoYXoxB1H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tYoYXoxB1H .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tYoYXoxB1H .section-text {
  padding: 2rem 0;
}
.cid-tYoYXoxB1H .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tYoYXoxB1H .inner-container {
    width: 100% !important;
  }
}
.cid-tOjZxfJZpk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/infocontrol-oplata-zakaza-1-1900x1140.jpg");
}
.cid-tOjZxfJZpk .form-control,
.cid-tOjZxfJZpk .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-tOjZxfJZpk .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-tOjZxfJZpk textarea.form-control {
  min-height: 188px;
}
.cid-tOjZxfJZpk .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-tOjZxfJZpk .content-container {
    padding-right: 5rem;
  }
}
.cid-taMWeTMgyv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-taMWeTMgyv .mbr-text,
.cid-taMWeTMgyv blockquote {
  color: #767676;
}
.cid-taMWeTMgyv .mbr-text {
  color: #000000;
}
.cid-rp6hK7hxNK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rp6hK7hxNK .carousel-control {
  background: #000;
}
.cid-rp6hK7hxNK .mbr-section-subtitle {
  color: #767676;
}
.cid-rp6hK7hxNK .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rp6hK7hxNK .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rp6hK7hxNK .carousel-item .wrap-img {
  text-align: center;
}
.cid-rp6hK7hxNK .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rp6hK7hxNK .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rp6hK7hxNK .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-rp6hK7hxNK .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rp6hK7hxNK .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rp6hK7hxNK .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-rp6hK7hxNK .cloneditem-1,
.cid-rp6hK7hxNK .cloneditem-2,
.cid-rp6hK7hxNK .cloneditem-3,
.cid-rp6hK7hxNK .cloneditem-4,
.cid-rp6hK7hxNK .cloneditem-5 {
  display: none;
}
.cid-rp6hK7hxNK .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rp6hK7hxNK .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides2 .cloneditem-1,
  .cid-rp6hK7hxNK .carousel-inner.slides2 .cloneditem-2,
  .cid-rp6hK7hxNK .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides3 .cloneditem-1,
  .cid-rp6hK7hxNK .carousel-inner.slides3 .cloneditem-2,
  .cid-rp6hK7hxNK .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides4 .cloneditem-1,
  .cid-rp6hK7hxNK .carousel-inner.slides4 .cloneditem-2,
  .cid-rp6hK7hxNK .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides5 .cloneditem-1,
  .cid-rp6hK7hxNK .carousel-inner.slides5 .cloneditem-2,
  .cid-rp6hK7hxNK .carousel-inner.slides5 .cloneditem-3,
  .cid-rp6hK7hxNK .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rp6hK7hxNK .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rp6hK7hxNK .carousel-inner.slides6 .cloneditem-1,
  .cid-rp6hK7hxNK .carousel-inner.slides6 .cloneditem-2,
  .cid-rp6hK7hxNK .carousel-inner.slides6 .cloneditem-3,
  .cid-rp6hK7hxNK .carousel-inner.slides6 .cloneditem-4,
  .cid-rp6hK7hxNK .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sn85h8tAq6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sn85h8tAq6 .mbr-text,
.cid-sn85h8tAq6 blockquote {
  color: #767676;
}
.cid-sn85h8tAq6 .mbr-text P {
  text-align: left;
}
.cid-sn85h8tAq6 .mbr-text {
  color: #ffffff;
}
.cid-u0hFdfAoQ9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-u0hFdfAoQ9 .mbr-section-subtitle {
  color: #000000;
}
.cid-u0hFdfAoQ9 .container-table {
  margin: 0 auto;
}
.cid-u0hFdfAoQ9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0hFdfAoQ9 .dataTables_wrapper {
  display: block;
}
.cid-u0hFdfAoQ9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0hFdfAoQ9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0hFdfAoQ9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-u0hFdfAoQ9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u0hFdfAoQ9 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-u0hFdfAoQ9 table td {
  border-top: 1px solid #cccccc;
}
.cid-u0hFdfAoQ9 table.table {
  background: #ffffff;
}
.cid-u0hFdfAoQ9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0hFdfAoQ9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0hFdfAoQ9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0hFdfAoQ9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u0hFdfAoQ9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u0hFdfAoQ9 .dataTables_filter {
    text-align: center;
  }
  .cid-u0hFdfAoQ9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u0hFdfAoQ9 .head-item {
  text-align: center;
}
.cid-u0hFdfAoQ9 .body-item {
  text-align: center;
}
.cid-u0hFRoIRen {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u0hFRoIRen .mbr-text,
.cid-u0hFRoIRen blockquote {
  color: #767676;
}
.cid-u0hFRoIRen .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r7bO4PVfIo {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-rql6bxyww7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rql6bxyww7 div.b {
  padding-top: 2rem;
}
.cid-rql6bxyww7 .mbr-text {
  color: #000000;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-rql6bxyww7 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rql6bxyww7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-rql6bxyww7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rql6bxyww7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-rql6bxyww7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rql6bxyww7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rql6bxyww7 div.left-block.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cid-rql6bxyww7 div.left-block.wrapper {
    padding-bottom: 3rem;
  }
}
.cid-rIPxl1Iap9 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/yoshkar-ola-social.jpg");
}
.cid-rIPxl1Iap9 .mbr-section-subtitle {
  color: #000000;
}
.cid-rIPxl1Iap9 .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rIPxl1Iap9 .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-rIPxl1Iap9 .team-item .item-image img {
  width: 100%;
}
.cid-rIPxl1Iap9 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-rIPxl1Iap9 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-rIPxl1Iap9 .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-rIPxl1Iap9 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-rIPxl1Iap9 .team-item .item-caption {
  background: #efefef;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rvHk6lx5Zd {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #215668;
}
.cid-rvHkSVQUaL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rvHkSVQUaL h2 {
  text-align: center;
}
.cid-rvHkSVQUaL h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rvHkSVQUaL p {
  color: #767676;
}
.cid-rvHkSVQUaL img {
  object-fit: cover;
}
.cid-rvHkSVQUaL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rvHkSVQUaL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rvHkSVQUaL .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rvHkSVQUaL .mbr-section-subtitle {
  color: #767676;
}
.cid-rvHkSVQUaL .card-title {
  font-weight: 500;
}
.cid-rvHkSVQUaL .card-img {
  text-align: inherit;
}
.cid-rvHkSVQUaL .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rvHkSVQUaL .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-rvHkSVQUaL .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rvHkSVQUaL .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rvHkSVQUaL .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-rvHkSVQUaL .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-rvHkSVQUaL .mbr-section-text {
  color: #000000;
}
.cid-rvHlwf6WCf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0f7699;
}
.cid-rvHlwf6WCf .mbr-section-subtitle {
  color: #767676;
}
.cid-rvHlwf6WCf H2 {
  color: #ffffff;
}
.cid-rvHl7EPAfp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0f7699;
}
.cid-rvHl7EPAfp .card-box {
  padding: 0 2rem;
}
.cid-rvHl7EPAfp .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rvHl7EPAfp .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rvHl7EPAfp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rvHl7EPAfp p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rvHl7EPAfp .mbr-text {
  color: #000000;
}
.cid-rvHl7EPAfp .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rvHl7EPAfp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rvHl7EPAfp .card-title {
  text-align: center;
}
.cid-uu6Ss4vM7D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uu6Ss4vM7D .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uu6Ss4vM7D .icon-block {
  margin-bottom: 10px;
}
.cid-uu6Ss4vM7D .icon-block .icon-block__icon {
  display: inline-block;
  vertical-align: middle;
}
.cid-uu6Ss4vM7D .icon-block .icon-block__title {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-uu6Ss4vM7D .mbr-text {
  color: #000000;
}
.cid-uu6Ss4vM7D textarea.form-control {
  min-height: 100px;
}
.cid-uu6Ss4vM7D a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uu6Ss4vM7D .google-map {
  height: 29rem;
  position: relative;
}
.cid-uu6Ss4vM7D .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uu6Ss4vM7D .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uu6Ss4vM7D .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uu6Ss4vM7D .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-uu6Ss4vM7D h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uu6Ss4vM7D .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-uu6Ss4vM7D .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rmWGVfwE2e {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rmWGVfwE2e .mbr-section-subtitle {
  color: #000000;
}
.cid-qYdHoGYvty {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qYdHoGYvty .mbr-text,
.cid-qYdHoGYvty blockquote {
  color: #767676;
}
.cid-qYdHoGYvty .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdwreeMs8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdwreeMs8 .mbr-text,
.cid-rzdwreeMs8 blockquote {
  color: #767676;
}
.cid-rzdwreeMs8 .mbr-text P {
  text-align: left;
}
.cid-rzdwreeMs8 .mbr-text {
  color: #ffffff;
}
.cid-r0CoeCk7R9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r0CoeCk7R9 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-r0CoeCk7R9 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-r0CoeCk7R9 .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-r0CoeCk7R9 .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-r0CoeCk7R9 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-r0CoeCk7R9 .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-r0CoeCk7R9 .mbr-section-subtitle {
  color: #000000;
}
.cid-r0CoeCk7R9 p {
  color: #767676;
}
.cid-r0CoeCk7R9 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-r0CoeCk7R9 .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-r0CoeCk7R9 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-r0CoeCk7R9 P {
  color: #000000;
  text-align: left;
}
.cid-rzbHoOxB7i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rzbHoOxB7i .mbr-text {
  color: #ffffff;
}
.cid-rzbHoOxB7i h4 {
  text-align: center;
}
.cid-rzbHoOxB7i p {
  text-align: center;
}
.cid-rzbHoOxB7i .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rzbHoOxB7i .card-title,
.cid-rzbHoOxB7i .card-img {
  color: #ffffff;
}
.cid-s6RGKtRzx1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RGKtRzx1 P {
  color: #767676;
}
.cid-utUBaxMCLL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBaxMCLL .form-control,
.cid-utUBaxMCLL .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBaxMCLL .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBaxMCLL textarea.form-control {
  min-height: 188px;
}
.cid-utUBaxMCLL .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBaxMCLL .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdx8Zppy4 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdx8Zppy4 .mbr-text,
.cid-rzdx8Zppy4 blockquote {
  color: #767676;
}
.cid-rzdx8Zppy4 .mbr-text P {
  text-align: left;
}
.cid-rzdx8Zppy4 .mbr-text {
  color: #ffffff;
}
.cid-rzbJWnJJ54 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzbJWnJJ54 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rzbJWnJJ54 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rzbJWnJJ54 .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rzbJWnJJ54 .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rzbJWnJJ54 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rzbJWnJJ54 .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rzbJWnJJ54 .mbr-section-subtitle {
  color: #000000;
}
.cid-rzbJWnJJ54 p {
  color: #767676;
}
.cid-rzbJWnJJ54 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rzbJWnJJ54 .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rzbJWnJJ54 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rzbJWnJJ54 P {
  color: #000000;
  text-align: left;
}
.cid-rzbJWpcCRo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rzbJWpcCRo .mbr-text {
  color: #ffffff;
}
.cid-rzbJWpcCRo h4 {
  text-align: center;
}
.cid-rzbJWpcCRo p {
  text-align: center;
}
.cid-rzbJWpcCRo .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rzbJWpcCRo .card-title,
.cid-rzbJWpcCRo .card-img {
  color: #ffffff;
}
.cid-s6RGYatxlq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RGYatxlq P {
  color: #767676;
}
.cid-utUBculb0r {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBculb0r .form-control,
.cid-utUBculb0r .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBculb0r .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBculb0r textarea.form-control {
  min-height: 188px;
}
.cid-utUBculb0r .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBculb0r .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdxke2eyd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdxke2eyd .mbr-text,
.cid-rzdxke2eyd blockquote {
  color: #767676;
}
.cid-rzdxke2eyd .mbr-text P {
  text-align: left;
}
.cid-rzdxke2eyd .mbr-text {
  color: #ffffff;
}
.cid-rzcEWhE0kU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzcEWhE0kU .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rzcEWhE0kU .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rzcEWhE0kU .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rzcEWhE0kU .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rzcEWhE0kU .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rzcEWhE0kU .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rzcEWhE0kU .mbr-section-subtitle {
  color: #000000;
}
.cid-rzcEWhE0kU p {
  color: #767676;
}
.cid-rzcEWhE0kU .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rzcEWhE0kU .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rzcEWhE0kU .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rzcEWhE0kU P {
  color: #000000;
}
.cid-rzbM2CEbb4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rzbM2CEbb4 .mbr-text {
  color: #ffffff;
}
.cid-rzbM2CEbb4 h4 {
  text-align: center;
}
.cid-rzbM2CEbb4 p {
  text-align: center;
}
.cid-rzbM2CEbb4 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rzbM2CEbb4 .card-title,
.cid-rzbM2CEbb4 .card-img {
  color: #ffffff;
}
.cid-uoONcwdytu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uoONcwdytu .mbr-section-subtitle {
  color: #022a32;
}
.cid-uoOMSVmoMl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uoOMSVmoMl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOMSVmoMl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uoOMSVmoMl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uoOMSVmoMl .row {
  flex-direction: row-reverse;
}
.cid-uoOMSVmoMl img {
  width: 100%;
}
.cid-utUBeXXKXj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBeXXKXj .form-control,
.cid-utUBeXXKXj .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBeXXKXj .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBeXXKXj textarea.form-control {
  min-height: 188px;
}
.cid-utUBeXXKXj .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBeXXKXj .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzdxrcLRaB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rzdxrcLRaB .mbr-text,
.cid-rzdxrcLRaB blockquote {
  color: #767676;
}
.cid-rzdxrcLRaB .mbr-text P {
  text-align: left;
}
.cid-rzdxrcLRaB .mbr-text {
  color: #ffffff;
}
.cid-rzcFmIDyMO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzcFmIDyMO .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rzcFmIDyMO .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rzcFmIDyMO .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rzcFmIDyMO .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rzcFmIDyMO .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rzcFmIDyMO .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rzcFmIDyMO .mbr-section-subtitle {
  color: #000000;
}
.cid-rzcFmIDyMO p {
  color: #767676;
}
.cid-rzcFmIDyMO .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rzcFmIDyMO .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rzcFmIDyMO .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rzcFmIDyMO P {
  color: #000000;
}
.cid-rzcFmK0uXy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rzcFmK0uXy .mbr-text {
  color: #ffffff;
}
.cid-rzcFmK0uXy h4 {
  text-align: center;
}
.cid-rzcFmK0uXy p {
  text-align: center;
}
.cid-rzcFmK0uXy .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rzcFmK0uXy .card-title,
.cid-rzcFmK0uXy .card-img {
  color: #ffffff;
}
.cid-s6RHGHjVFB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RHGHjVFB P {
  color: #767676;
}
.cid-utUBh1RiYc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBh1RiYc .form-control,
.cid-utUBh1RiYc .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBh1RiYc .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBh1RiYc textarea.form-control {
  min-height: 188px;
}
.cid-utUBh1RiYc .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBh1RiYc .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rAqgcZExJM {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rAqgcZExJM .mbr-text,
.cid-rAqgcZExJM blockquote {
  color: #767676;
}
.cid-rAqgcZExJM .mbr-text P {
  text-align: left;
}
.cid-rAqgcZExJM .mbr-text {
  color: #ffffff;
}
.cid-rAqgd0d4pW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rAqgd0d4pW .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rAqgd0d4pW .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rAqgd0d4pW .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rAqgd0d4pW .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rAqgd0d4pW .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rAqgd0d4pW .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rAqgd0d4pW .mbr-section-subtitle {
  color: #000000;
}
.cid-rAqgd0d4pW p {
  color: #767676;
}
.cid-rAqgd0d4pW .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rAqgd0d4pW .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rAqgd0d4pW .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rAqgd0d4pW P {
  color: #000000;
}
.cid-rAqgd1hPkn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rAqgd1hPkn .mbr-text {
  color: #ffffff;
}
.cid-rAqgd1hPkn h4 {
  text-align: center;
}
.cid-rAqgd1hPkn p {
  text-align: center;
}
.cid-rAqgd1hPkn .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rAqgd1hPkn .card-title,
.cid-rAqgd1hPkn .card-img {
  color: #ffffff;
}
.cid-s6RIodXBNy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RIodXBNy P {
  color: #767676;
}
.cid-utUBtpzzjj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBtpzzjj .form-control,
.cid-utUBtpzzjj .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBtpzzjj .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBtpzzjj textarea.form-control {
  min-height: 188px;
}
.cid-utUBtpzzjj .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBtpzzjj .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rAqL9ByRkK {
  padding-top: 120px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/dut-top-1900x495.jpg");
}
.cid-rAqL9ByRkK .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rAqL9ByRkK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rAqL9ByRkK .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rAqL9ByRkK .mbr-text {
    text-align: center;
  }
}
.cid-txZhQdGJtO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/kompleksnoe-predlozhenie-banner-top-1-1920x565.jpg");
}
.cid-txZhQdGJtO .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txZhQdGJtO .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-txZhQdGJtO .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-txZhQdGJtO .mbr-text {
    text-align: center;
  }
}
.cid-rAt1dwKFTp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rAt1dwKFTp .mbr-text,
.cid-rAt1dwKFTp blockquote {
  color: #767676;
}
.cid-rAt1dwKFTp .mbr-text {
  color: #000000;
}
.cid-rAqKGs5WLq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/infocontrol-yoshkar-ola-1841x587.jpg");
}
.cid-rAqKGs5WLq h2 {
  text-align: center;
}
.cid-rAqKGs5WLq h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rAqKGs5WLq p {
  color: #767676;
}
.cid-rAqKGs5WLq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rAqKGs5WLq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rAqKGs5WLq .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rAqKGs5WLq .mbr-section-subtitle {
  color: #232323;
}
.cid-rAqKGs5WLq .card-title {
  font-weight: 500;
}
.cid-rAqKGs5WLq .card-img {
  text-align: inherit;
}
.cid-rAqKGs5WLq .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rAqKGs5WLq .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rAqKGs5WLq .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rAqKGs5WLq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rAqKGs5WLq .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rAqKGs5WLq .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rAqKGs5WLq .mbr-section-text {
  color: #232323;
}
.cid-rAqKGpkyvL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rAqKGpkyvL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rAqKGpkyvL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rAqKGpkyvL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rAqKGpkyvL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rAqKGpkyvL .row > .row {
  display: block;
}
.cid-rAqKGpkyvL .mbr-gallery-item {
  width: 100%;
}
.cid-rAqKGpkyvL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rAqKGpkyvL .mbr-gallery-item > div {
  position: relative;
}
.cid-rAqKGpkyvL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rAqKGpkyvL .mbr-gallery-item > div:hover:before {
  opacity: 0.9 !important;
}
.cid-rAqKGpkyvL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rAqKGpkyvL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.9;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rAqMz8iDBm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rAqMz8iDBm .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rAqMz8iDBm .step {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-rAqMz8iDBm .separline {
  position: relative;
}
.cid-rAqMz8iDBm .separline:after {
  top: 44px;
  left: 18px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (20px + 4px) * 2);
  background-color: #efefef;
}
.cid-tpMMExGXLL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tpMMExGXLL .mbr-text,
.cid-tpMMExGXLL blockquote {
  color: #767676;
}
.cid-tpMMExGXLL .mbr-text {
  color: #ffffff;
}
.cid-tpMMExGXLL .mbr-text P {
  text-align: center;
}
.cid-utUBoCx8Jc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBoCx8Jc .form-control,
.cid-utUBoCx8Jc .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBoCx8Jc .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBoCx8Jc textarea.form-control {
  min-height: 188px;
}
.cid-utUBoCx8Jc .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBoCx8Jc .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBRgmbUCuE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rBRgmbUCuE .mbr-text,
.cid-rBRgmbUCuE blockquote {
  color: #767676;
}
.cid-rBRgmbUCuE .mbr-text P {
  text-align: left;
}
.cid-rBRgmbUCuE .mbr-text {
  color: #ffffff;
}
.cid-rBPM4sU2tx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/wialon-local-header-1900x1267.jpg");
}
.cid-rBPM4sU2tx .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rBPM4sU2tx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rBPM4sU2tx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rBPM4sU2tx .mbr-text {
    text-align: center;
  }
}
.cid-rBPNpMj7FT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rBPNpMj7FT h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rBPNpMj7FT .progress {
  width: 100%;
}
.cid-rBPNpMj7FT .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-rBPNpMj7FT progress {
  height: 8px;
}
.cid-rBPNpMj7FT .progressbar-number {
  display: inline-block;
}
.cid-rBPNpMj7FT .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-rBPNpMj7FT .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-rBPNpMj7FT .mbr-section-subtitle {
  color: #000000;
}
.cid-rBPNpMj7FT .section-content-title {
  font-weight: 500;
  color: #073b4c;
}
.cid-rBPNpMj7FT .progress_value {
  position: relative;
}
.cid-rBPNpMj7FT .progress1 .progressbar-number:before,
.cid-rBPNpMj7FT .progress2 .progressbar-number:before,
.cid-rBPNpMj7FT .progress3 .progressbar-number:before,
.cid-rBPNpMj7FT .progress4 .progressbar-number:before,
.cid-rBPNpMj7FT .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-rBPNpMj7FT progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-rBPNpMj7FT progress::-webkit-progress-value {
  background: #149dcc;
}
.cid-rBPNpMj7FT progress[value]::-moz-progress-bar {
  background: #149dcc;
}
.cid-rBPNpMj7FT progress::-ms-fill {
  background: #149dcc;
}
.cid-rBPNpMj7FT .progress1 .progressbar-number:before {
  content: '25';
}
.cid-rBPNpMj7FT .progress2 .progressbar-number:before {
  content: '99';
}
.cid-rBPNpMj7FT .progress3 .progressbar-number:before {
  content: '40';
}
.cid-rBPNpMj7FT .progress4 .progressbar-number:before {
  content: '70';
}
.cid-rBPNpMj7FT .progress5 .progressbar-number:before {
  content: '60';
}
@media (min-width: 768px) {
  .cid-rBPNpMj7FT .text-elements {
    padding-right: 3rem;
  }
  .cid-rBPNpMj7FT .progress_elements {
    padding-left: 3rem;
  }
}
.cid-rBPNpMj7FT .mbr-section-title {
  color: #073b4c;
}
.cid-rBPM85sqzp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/wialon-local-back-1900x792.jpg");
}
.cid-rBPM85sqzp .mbr-section-text {
  color: #000000;
}
.cid-rBPM85sqzp .mbr-section-subtitle {
  color: #073b4c;
}
.cid-rBPM85sqzp .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBPM85sqzp .mbr-iconfont {
  font-size: 48px;
}
.cid-rBPM85sqzp .card-img {
  margin-bottom: 1.5rem;
}
.cid-rBPM85sqzp .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBPM85sqzp .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rBPM85sqzp .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rBPM85sqzp .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #0f7699;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #0f7699;
}
.cid-rBPM85sqzp .nav-tabs .nav-link:hover {
  background: #149dcc;
}
.cid-rBPM85sqzp .nav-tabs .nav-link.active {
  color: #ffffff;
  font-style: normal;
  border: 2px solid #149dcc;
  background: #149dcc;
}
.cid-rBPM85sqzp .nav-tabs .nav-link.active:hover {
  border: 2px solid #149dcc;
}
.cid-rBPM85sqzp H2 {
  color: #073b4c;
}
.cid-rBQ39fnkWJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-rBQ39fnkWJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rBQ39fnkWJ H2 {
  color: #ffffff;
}
.cid-rBQ2Z71sLG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-rBQ2Z71sLG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBQ2Z71sLG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBQ2Z71sLG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBQ2Z71sLG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBQ2Z71sLG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBQ2Z71sLG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBQ2Z71sLG .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rBQ2Z71sLG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBQ2Z71sLG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBQ3jJngCE {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/wialon-local-line-1-1920x300.jpg");
}
.cid-rBQ3jJngCE H2 {
  color: #000000;
}
.cid-rBQ3jJngCE .mbr-section-subtitle {
  color: #000000;
}
.cid-rMYl54ESZz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rMYl54ESZz .mbr-text,
.cid-rMYl54ESZz blockquote {
  color: #767676;
}
.cid-rMYl54ESZz .mbr-text P {
  color: #000000;
  text-align: center;
}
.cid-rMYl54ESZz .mbr-text {
  color: #ffffff;
}
.cid-utUz92Bvkz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUz92Bvkz .form-control,
.cid-utUz92Bvkz .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUz92Bvkz .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUz92Bvkz textarea.form-control {
  min-height: 188px;
}
.cid-utUz92Bvkz .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUz92Bvkz .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBVrEwIZP2 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/1c-top-2000x500.jpg");
}
.cid-rBVrEwIZP2 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rBVrEwIZP2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rBVrEwIZP2 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rBVrEwIZP2 .mbr-text {
    text-align: center;
  }
}
.cid-rBVrEwIZP2 .mbr-text,
.cid-rBVrEwIZP2 .mbr-section-btn {
  text-align: center;
}
.cid-rBVrEwIZP2 H1 {
  text-align: center;
}
.cid-rBVt7mKkmF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rBVt7mKkmF .mbr-section-subtitle {
  color: #000000;
}
.cid-rBVt7Go8Bb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rBVt7Go8Bb .mbr-text,
.cid-rBVt7Go8Bb blockquote {
  color: #767676;
}
.cid-rBVt7Go8Bb .mbr-text {
  color: #000000;
}
.cid-rBVtSQiXoz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rBVtSQiXoz .mbr-section-text {
  color: #000000;
}
.cid-rBVtSQiXoz .mbr-section-subtitle {
  color: #000000;
}
.cid-rBVtSQiXoz .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBVtSQiXoz .mbr-iconfont {
  font-size: 48px;
}
.cid-rBVtSQiXoz .card-img {
  margin-bottom: 1.5rem;
}
.cid-rBVtSQiXoz .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rBVtSQiXoz .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rBVtSQiXoz .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rBVtSQiXoz .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #232323;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #232323;
}
.cid-rBVtSQiXoz .nav-tabs .nav-link:hover {
  background: #f7ed4a;
}
.cid-rBVtSQiXoz .nav-tabs .nav-link.active {
  color: #000000;
  font-style: normal;
  border: 2px solid #f7ed4a;
  background: #f7ed4a;
}
.cid-rBVtSQiXoz .nav-tabs .nav-link.active:hover {
  border: 2px solid #f7ed4a;
}
.cid-rBVuy7r5Kz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rBVuy7r5Kz .mbr-section-subtitle {
  color: #000000;
}
.cid-rBVuwb8f8e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rBVuwb8f8e .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBVuwb8f8e .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBVuwb8f8e .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBVuwb8f8e .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBVuwb8f8e .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rBVuwb8f8e .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBVuwb8f8e .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rBVuwb8f8e .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBVuwb8f8e .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s8di6c2RVD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s8di6c2RVD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8di6c2RVD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8di6c2RVD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8di6c2RVD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8di6c2RVD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s8di6c2RVD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8di6c2RVD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8di6c2RVD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8di6c2RVD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s8hXuammDL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s8hXuammDL .mbr-section-subtitle {
  color: #767676;
}
.cid-s8hXBRNIBG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s8hXBRNIBG .mbr-text,
.cid-s8hXBRNIBG blockquote {
  color: #767676;
}
.cid-s8hXBRNIBG .mbr-text {
  color: #000000;
}
.cid-s8ditxT6b2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-s8ditxT6b2 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-s8ditxT6b2 .main .mbr-section-btn {
  text-align: right;
}
.cid-s8ditxT6b2 .btn {
  margin: 0 0 .5rem 0;
}
.cid-utUJ3didgz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUJ3didgz .form-control,
.cid-utUJ3didgz .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUJ3didgz .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUJ3didgz textarea.form-control {
  min-height: 188px;
}
.cid-utUJ3didgz .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUJ3didgz .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qYdIFyfMX8 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-qYdIM23daF {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qYdIM23daF .mbr-text,
.cid-qYdIM23daF blockquote {
  color: #767676;
}
.cid-qYdIM23daF .mbr-text DIV {
  color: #000000;
  text-align: left;
}
.cid-qYdIM23daF .mbr-text B {
  color: #232323;
}
.cid-qYdIM23daF .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT36b5qNaZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tT36b5qNaZ .mbr-text,
.cid-tT36b5qNaZ blockquote {
  color: #767676;
}
.cid-tT36b5qNaZ .mbr-text P {
  text-align: left;
}
.cid-tT36b5qNaZ .mbr-text {
  color: #ffffff;
}
.cid-rFBuUDJ2nE {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/banner-taho-hand-1900x900.jpg");
}
.cid-rFBuUDJ2nE .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rFBuUDJ2nE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rFBuUDJ2nE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rFBuUDJ2nE .mbr-text {
    text-align: center;
  }
}
.cid-rFBWFZ6ATL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFBWFZ6ATL .mbr-section-subtitle {
  color: #767676;
}
.cid-rFBTKDUapu {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rFBTKDUapu .mbr-text {
  color: #000000;
}
.cid-rFBTKDUapu h4 {
  text-align: center;
}
.cid-rFBTKDUapu p {
  text-align: center;
}
.cid-rFBTKDUapu .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rFBX7R3brq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFBX7R3brq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rFBX7R3brq H2 {
  color: #ffffff;
}
.cid-rFBTOy86yI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFBTOy86yI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rFBTOy86yI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rFBTOy86yI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rFBTOy86yI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rFBTOy86yI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rFBTOy86yI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rFBTOy86yI .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-rFBTOy86yI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rFBTOy86yI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rFBXvZG5gP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFBXvZG5gP .mbr-section-subtitle {
  color: #767676;
}
.cid-rFBTQk3CME {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFBTQk3CME .mbr-text {
  color: #767676;
}
.cid-rFBTQk3CME h4 {
  text-align: center;
}
.cid-rFBTQk3CME p {
  text-align: center;
}
.cid-rFBTQk3CME .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rFBYHYDVTd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFBYHYDVTd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rFBYHYDVTd H2 {
  color: #ffffff;
}
.cid-rFBYJI7tGb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFBYJI7tGb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rFBYJI7tGb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rFBYJI7tGb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rFBYJI7tGb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rFBYJI7tGb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rFBYJI7tGb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rFBYJI7tGb .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-rFBYJI7tGb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rFBYJI7tGb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rFBZi8qGeE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rFBZi8qGeE .mbr-section-subtitle {
  color: #000000;
}
.cid-rFBUaEXzrM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rFBUaEXzrM .mbr-text {
  color: #000000;
}
.cid-rFBUaEXzrM h4 {
  text-align: center;
}
.cid-rFBUaEXzrM p {
  text-align: center;
}
.cid-rFBUaEXzrM .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rFC4qik7Ez {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFC4qik7Ez .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rFC4qik7Ez H2 {
  color: #ffffff;
}
.cid-rFBUe2oHvQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFBUe2oHvQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rFBUe2oHvQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rFBUe2oHvQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rFBUe2oHvQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rFBUe2oHvQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rFBUe2oHvQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rFBUe2oHvQ .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-rFBUe2oHvQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rFBUe2oHvQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rFBUjTPMbc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/wialon-local-header-1900x1267.jpg");
}
@media (min-width: 992px) {
  .cid-rFBUjTPMbc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rFBUjTPMbc .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rFBUjTPMbc .mbr-text {
    text-align: center;
  }
}
.cid-utUzOIsawb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzOIsawb .form-control,
.cid-utUzOIsawb .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzOIsawb .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzOIsawb textarea.form-control {
  min-height: 188px;
}
.cid-utUzOIsawb .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzOIsawb .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rFC7wHLoOj {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rFC7wHLoOj .mbr-text,
.cid-rFC7wHLoOj blockquote {
  color: #767676;
}
.cid-rFC7wHLoOj .mbr-text P {
  text-align: left;
}
.cid-rFC7wHLoOj .mbr-text {
  color: #ffffff;
}
.cid-rFC7DyoVXe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rFC7DyoVXe .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rFC7DyoVXe .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #232323;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #232323;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rFC7DyoVXe .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rFC7DyoVXe .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rFC7DyoVXe .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rFC7DyoVXe .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rFC7DyoVXe .mbr-section-subtitle {
  color: #000000;
}
.cid-rFC7DyoVXe p {
  color: #767676;
}
.cid-rFC7DyoVXe .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rFC7DyoVXe .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rFC7DyoVXe .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rFC7DyoVXe P {
  color: #000000;
}
.cid-rFDmMNMBzT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFDmMNMBzT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rFDmMNMBzT H2 {
  color: #ffffff;
}
.cid-rFJPcQSeHa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-rFJPcQSeHa .mbr-text {
  color: #ffffff;
}
.cid-rFJPcQSeHa h4 {
  text-align: center;
}
.cid-rFJPcQSeHa p {
  text-align: center;
}
.cid-rFJPcQSeHa .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rFJPcQSeHa .card-title,
.cid-rFJPcQSeHa .card-img {
  color: #ffffff;
}
.cid-rFDpa0gPHa {
  background: #215668;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rFDpa0gPHa .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-rFDpa0gPHa .video-block {
    width: 100% !important;
  }
}
.cid-s6RGkYo3ZQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RGkYo3ZQ P {
  color: #767676;
}
.cid-utUASMxj5P {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUASMxj5P .form-control,
.cid-utUASMxj5P .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUASMxj5P .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUASMxj5P textarea.form-control {
  min-height: 188px;
}
.cid-utUASMxj5P .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUASMxj5P .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLmAgVVRXk {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rLmAgVVRXk .mbr-section-subtitle {
  color: #000000;
}
.cid-rLmAgWlIUb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rLmAgWlIUb .mbr-text,
.cid-rLmAgWlIUb blockquote {
  color: #767676;
}
.cid-rLmAgWlIUb .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSbJQ25kcx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rSbJQ25kcx .mbr-text,
.cid-rSbJQ25kcx blockquote {
  color: #767676;
}
.cid-rSbJQ25kcx .mbr-text P {
  text-align: left;
}
.cid-rSbJQ25kcx .mbr-text {
  color: #ffffff;
}
.cid-rSbJQ2D9xc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-rSbJQ2D9xc DIV {
  color: #232323;
}
.cid-rSbJQ2D9xc SPAN {
  color: #232323;
}
.cid-rSbJQ2D9xc .mbr-section-subtitle {
  color: #232323;
}
.cid-rSbJQ3Qy1u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSbJQ3Qy1u .mbr-text,
.cid-rSbJQ3Qy1u blockquote {
  color: #767676;
}
.cid-rSbJQ3Qy1u .mbr-text I {
  color: #232323;
}
.cid-rSbJQ3Qy1u .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rSbJQ3Qy1u .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSfo0ew5Ut {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/buses-tablo-back-1900x891.jpg");
}
.cid-rSfo0ew5Ut .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rSfo0ew5Ut .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rSfo0ew5Ut .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rSfo0ew5Ut .mbr-text {
    text-align: center;
  }
}
.cid-rSfwWHz74L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
.cid-rSfwWHz74L .mbr-text {
  color: #ffffff;
}
.cid-rSfwWHz74L h4 {
  text-align: center;
}
.cid-rSfwWHz74L p {
  text-align: center;
}
.cid-rSfwWHz74L .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rSfwWHz74L .card-title,
.cid-rSfwWHz74L .card-img {
  color: #ffffff;
}
.cid-rSfwR07qAS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSfwR07qAS .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  font-weight: 300;
}
.cid-rSfwR07qAS .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-rSfwR07qAS .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-rSfwR07qAS .separline {
  position: relative;
}
.cid-rSfwR07qAS .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-rSfwR07qAS .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-rSfwR07qAS .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-rSfwR07qAS .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rSfwR07qAS .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-rSi2nMCnQL {
  background: #215668;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-rSi2nMCnQL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-rSi2nMCnQL .video-block {
    width: 100% !important;
  }
}
.cid-rSfAUY1316 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/buses-tablo-features-1900x1267.jpg");
}
.cid-rSfAUY1316 h3 {
  font-weight: 300;
}
.cid-rSfAUY1316 .card-img {
  width: initial;
}
.cid-rSfAUY1316 .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rSfAUY1316 .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-rSfAUY1316 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rSfAUY1316 .mbr-section-subtitle {
  color: #000000;
}
.cid-rSfAUY1316 .mbr-text {
  color: #000000;
}
.cid-rSfAUY1316 .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rSfAUY1316 .mbr-al-i-c {
  align-items: center;
}
.cid-rSfAUY1316 .card-title,
.cid-rSfAUY1316 .card-img {
  text-align: center;
}
.cid-rSfAUY1316 .card-title {
  color: #215668;
}
.cid-rShe6lI1z8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #215668;
}
.cid-rShe6lI1z8 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rShe6lI1z8 .section-text {
  padding: 2rem 0;
}
.cid-rShe6lI1z8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rShe6lI1z8 .inner-container {
    width: 100% !important;
  }
}
.cid-rShhq3eKN3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/buses-tablo-back-1900x891.jpg");
}
.cid-rShhq3eKN3 .carousel-control {
  background: #000;
}
.cid-rShhq3eKN3 .mbr-section-subtitle {
  color: #000000;
}
.cid-rShhq3eKN3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rShhq3eKN3 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rShhq3eKN3 .carousel-item .wrap-img {
  text-align: center;
}
.cid-rShhq3eKN3 .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rShhq3eKN3 .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rShhq3eKN3 .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-rShhq3eKN3 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rShhq3eKN3 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rShhq3eKN3 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-rShhq3eKN3 .cloneditem-1,
.cid-rShhq3eKN3 .cloneditem-2,
.cid-rShhq3eKN3 .cloneditem-3,
.cid-rShhq3eKN3 .cloneditem-4,
.cid-rShhq3eKN3 .cloneditem-5 {
  display: none;
}
.cid-rShhq3eKN3 .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rShhq3eKN3 .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides2 .cloneditem-1,
  .cid-rShhq3eKN3 .carousel-inner.slides2 .cloneditem-2,
  .cid-rShhq3eKN3 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides3 .cloneditem-1,
  .cid-rShhq3eKN3 .carousel-inner.slides3 .cloneditem-2,
  .cid-rShhq3eKN3 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides4 .cloneditem-1,
  .cid-rShhq3eKN3 .carousel-inner.slides4 .cloneditem-2,
  .cid-rShhq3eKN3 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides5 .cloneditem-1,
  .cid-rShhq3eKN3 .carousel-inner.slides5 .cloneditem-2,
  .cid-rShhq3eKN3 .carousel-inner.slides5 .cloneditem-3,
  .cid-rShhq3eKN3 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rShhq3eKN3 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rShhq3eKN3 .carousel-inner.slides6 .cloneditem-1,
  .cid-rShhq3eKN3 .carousel-inner.slides6 .cloneditem-2,
  .cid-rShhq3eKN3 .carousel-inner.slides6 .cloneditem-3,
  .cid-rShhq3eKN3 .carousel-inner.slides6 .cloneditem-4,
  .cid-rShhq3eKN3 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-s6ROS0MfDH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/cert-background-1920x300.jpg");
}
.cid-s6ROS0MfDH P {
  color: #767676;
}
.cid-utUBNYikcM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBNYikcM .form-control,
.cid-utUBNYikcM .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBNYikcM .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBNYikcM textarea.form-control {
  min-height: 188px;
}
.cid-utUBNYikcM .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBNYikcM .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSh04YNrGZ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rSh04YNrGZ .mbr-text,
.cid-rSh04YNrGZ blockquote {
  color: #767676;
}
.cid-rSh04YNrGZ .mbr-text P {
  text-align: left;
}
.cid-rSh04YNrGZ .mbr-text {
  color: #ffffff;
}
.cid-rSh04ZolTd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-rSh04ZolTd DIV {
  color: #232323;
}
.cid-rSh04ZolTd SPAN {
  color: #232323;
}
.cid-rSh04ZolTd .mbr-section-subtitle {
  color: #232323;
}
.cid-rSh04ZolTd H2 {
  color: #000000;
}
.cid-rSh050NXZR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSh050NXZR .mbr-text,
.cid-rSh050NXZR blockquote {
  color: #767676;
}
.cid-rSh050NXZR .mbr-text I {
  color: #232323;
}
.cid-rSh050NXZR .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rSh050NXZR .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rTHzVqGMSE {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/agromonitoring-top-1900x411.jpg");
}
.cid-rTHzVqGMSE .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rTHzVqGMSE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rTHzVqGMSE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rTHzVqGMSE .mbr-text {
    text-align: center;
  }
}
.cid-rUYDdYpySl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUYDdYpySl .mbr-section-subtitle {
  color: #000000;
}
.cid-rUYDcUXMnf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUYDcUXMnf .mbr-text {
  color: #000000;
}
.cid-rUYDcUXMnf h4 {
  text-align: center;
}
.cid-rUYDcUXMnf p {
  text-align: center;
}
.cid-rUYDcUXMnf .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rUYE6uoSVz {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/agromonitoring-sunflowers-1900x1069.jpg");
}
.cid-rUYE6uoSVz .card-box {
  padding: 1rem 2rem 2rem;
}
.cid-rUYE6uoSVz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rUYE6uoSVz p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rUYE6uoSVz .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-rUYE6uoSVz .mbr-section-btn a {
  margin: 0;
}
.cid-rUYE6uoSVz .mbr-text {
  color: #767676;
}
.cid-rUYE6uoSVz .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-rUYE6uoSVz .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-rUYE6uoSVz H2 {
  text-align: center;
}
.cid-rUYE6uoSVz .mbr-text,
.cid-rUYE6uoSVz .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-rUYE6uoSVz .card-title {
  text-align: center;
  color: #000000;
}
.cid-rUYE6uoSVz .mbr-section-subtitle {
  text-align: center;
}
.cid-rVcDVVotlf {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rVcDVVotlf .mbr-section-text {
  color: #000000;
}
.cid-rVcDVVotlf .mbr-section-subtitle {
  color: #000000;
}
.cid-rVcDVVotlf .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVcDVVotlf .mbr-iconfont {
  font-size: 48px;
}
.cid-rVcDVVotlf .card-img {
  margin-bottom: 1.5rem;
}
.cid-rVcDVVotlf .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVcDVVotlf .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rVcDVVotlf .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rVcDVVotlf .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #232323;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #232323;
}
.cid-rVcDVVotlf .nav-tabs .nav-link:hover {
  background: #0f7699;
}
.cid-rVcDVVotlf .nav-tabs .nav-link.active {
  color: #ffffff;
  font-style: normal;
  border: 2px solid #0f7699;
  background: #0f7699;
}
.cid-rVcDVVotlf .nav-tabs .nav-link.active:hover {
  border: 2px solid #0f7699;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUKmojuJCA {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner-online-1900x901.jpg");
}
.cid-rUKmojuJCA .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rUKmojuJCA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rUKmojuJCA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rUKmojuJCA .mbr-text {
    text-align: center;
  }
}
.cid-rUKmJuJqzB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-rUKmJuJqzB .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rUKmJuJqzB .section-text {
  padding: 2rem 0;
}
.cid-rUKmJuJqzB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rUKmJuJqzB .inner-container {
    width: 100% !important;
  }
}
.cid-rUKnaMSSVg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUKnaMSSVg .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rUKnaMSSVg .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #0f7699;
  padding-bottom: 0;
  color: #073b4c;
}
@media (min-width: 768px) {
  .cid-rUKnaMSSVg .separline .step-wrapper {
    position: relative;
  }
  .cid-rUKnaMSSVg .separline .step-wrapper:before,
  .cid-rUKnaMSSVg .separline .step-wrapper:after {
    top: 34px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 32px - 8px);
    background-color: #0f7699;
  }
  .cid-rUKnaMSSVg .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-rUKnaMSSVg .separline .step-wrapper:after {
    left: calc(50% + 8px + 32px);
  }
  .cid-rUKnaMSSVg .separline.last-child .step-wrapper:after,
  .cid-rUKnaMSSVg .separline:nth-child(3n) .step-wrapper:after,
  .cid-rUKnaMSSVg .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-rUKnaMSSVg .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-rUKo641W5L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rUKo641W5L h2 {
  text-align: left;
}
.cid-rUKo641W5L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rUKo641W5L p {
  color: #767676;
  text-align: left;
}
.cid-rUKo641W5L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rUKo641W5L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rUKo641W5L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUKo641W5L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rUKo641W5L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rUKo641W5L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rUKo641W5L .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rUKo641W5L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rUKo641W5L .card-img span {
    font-size: 40px !important;
  }
}
.cid-rUKo641W5L P {
  color: #000000;
}
.cid-rUKo641W5L H2 {
  color: #073b4c;
}
.cid-rUNeKACcB5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rUNeKACcB5 h2 {
  text-align: left;
}
.cid-rUNeKACcB5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rUNeKACcB5 p {
  color: #767676;
  text-align: left;
}
.cid-rUNeKACcB5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rUNeKACcB5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rUNeKACcB5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUNeKACcB5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rUNeKACcB5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rUNeKACcB5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rUNeKACcB5 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rUNeKACcB5 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rUNeKACcB5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rUNeKACcB5 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rUNeKACcB5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rUNeKACcB5 P {
  color: #000000;
}
.cid-rUNeKACcB5 H2 {
  color: #073b4c;
}
.cid-rUNeRpua6w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rUNeRpua6w h2 {
  text-align: left;
}
.cid-rUNeRpua6w h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rUNeRpua6w p {
  color: #767676;
  text-align: left;
}
.cid-rUNeRpua6w .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rUNeRpua6w .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rUNeRpua6w .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUNeRpua6w .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rUNeRpua6w .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rUNeRpua6w .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rUNeRpua6w .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rUNeRpua6w .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rUNeRpua6w .card-img span {
    font-size: 40px !important;
  }
}
.cid-rUNeRpua6w P {
  color: #000000;
}
.cid-rUNeRpua6w H2 {
  color: #073b4c;
}
.cid-utUyR9ybyD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyR9ybyD .form-control,
.cid-utUyR9ybyD .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyR9ybyD .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyR9ybyD textarea.form-control {
  min-height: 188px;
}
.cid-utUyR9ybyD .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyR9ybyD .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUZ44gk9dt {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/banner-taho-hand-1900x900.jpg");
}
.cid-rUZ44gk9dt .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rUZ44gk9dt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rUZ44gk9dt .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rUZ44gk9dt .mbr-text {
    text-align: center;
  }
}
.cid-tv9TLFK7z6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tv9TLFK7z6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-tv9TLFK7z6 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-tv9TLFK7z6 .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-tv9TLFK7z6 .mbr-section-btn a {
  margin: 0;
}
.cid-tv9TLFK7z6 .mbr-text {
  color: #767676;
}
.cid-tv9TLFK7z6 .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tv9TLFK7z6 .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tv9TLFK7z6 .card-title {
  text-align: center;
}
.cid-tv9TLFK7z6 .mbr-text,
.cid-tv9TLFK7z6 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-rUZ7Wwpmy1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUZ7Wwpmy1 .mbr-section-subtitle {
  color: #767676;
}
.cid-rUZ7Sjal1A {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rUZ7Sjal1A h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUZ7Sjal1A p {
  color: #767676;
  text-align: left;
}
.cid-rUZ7Sjal1A .card-box {
  padding-top: 2rem;
}
.cid-rUZ7Sjal1A .card-wrapper {
  height: 100%;
}
.cid-rUZ7Sjal1A .card-title {
  text-align: center;
}
.cid-rUZ7Sjal1A P {
  color: #000000;
  text-align: center;
}
.cid-u0hHZMHlNu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e6f2f4;
}
@media (min-width: 992px) {
  .cid-u0hHZMHlNu .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-u0hHZMHlNu .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-u0hHZMHlNu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-rUZd9svgRo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rUZd9svgRo .mbr-section-subtitle {
  color: #767676;
}
.cid-sMhH5Z1TY7 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sMhH5Z1TY7 .mbr-text,
.cid-sMhH5Z1TY7 blockquote {
  color: #767676;
}
.cid-sMhH5Z1TY7 .mbr-text {
  color: #000000;
}
.cid-uGD0K2vTXV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #3c3c3c;
}
.cid-uGD0K2vTXV .mbr-text,
.cid-uGD0K2vTXV blockquote {
  color: #767676;
}
.cid-uGD0K2vTXV .mbr-text P {
  text-align: center;
}
.cid-uGD0K2vTXV .mbr-text {
  color: #ffffff;
}
.cid-utUzLtSQEt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzLtSQEt .form-control,
.cid-utUzLtSQEt .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzLtSQEt .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzLtSQEt textarea.form-control {
  min-height: 188px;
}
.cid-utUzLtSQEt .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzLtSQEt .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUZ2w0PdEa {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rUZ2w0PdEa .mbr-text,
.cid-rUZ2w0PdEa blockquote {
  color: #767676;
}
.cid-rUZ2w0PdEa .mbr-text P {
  text-align: left;
}
.cid-rUZ2w0PdEa .mbr-text {
  color: #ffffff;
}
.cid-rUZ2w1nUaL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-rUZ2w1nUaL DIV {
  color: #232323;
}
.cid-rUZ2w1nUaL SPAN {
  color: #232323;
}
.cid-rUZ2w1nUaL .mbr-section-subtitle {
  color: #232323;
}
.cid-rUZ2w2Mw2A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rUZ2w2Mw2A .mbr-text,
.cid-rUZ2w2Mw2A blockquote {
  color: #767676;
}
.cid-rUZ2w2Mw2A .mbr-text I {
  color: #232323;
}
.cid-rUZ2w2Mw2A .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-rUZ2w2Mw2A .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT376Ncuhj {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tT376Ncuhj .mbr-text,
.cid-tT376Ncuhj blockquote {
  color: #767676;
}
.cid-tT376Ncuhj .mbr-text P {
  text-align: left;
}
.cid-tT376Ncuhj .mbr-text {
  color: #ffffff;
}
.cid-rnZv9gTbG1 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/banner-taho-hand-1900x900.jpg");
}
.cid-rnZv9gTbG1 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rnZv9gTbG1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rnZv9gTbG1 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rnZv9gTbG1 .mbr-text {
    text-align: center;
  }
}
.cid-rnZv9gTbG1 .mbr-text,
.cid-rnZv9gTbG1 .mbr-section-btn {
  text-align: center;
}
.cid-rnZv9gTbG1 H1 {
  text-align: center;
}
.cid-teKyvDZtpX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/no-estr-cards-1920x1080.jpg");
}
.cid-teKyvDZtpX P {
  color: #767676;
}
.cid-teKyvDZtpX .mbr-text,
.cid-teKyvDZtpX .mbr-section-btn {
  color: #ffffff;
}
.cid-teKyvDZtpX H1 {
  color: #ffffff;
}
.cid-rnUboTOknV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/tacho-card-back-1900x475.jpg");
}
.cid-rnUboTOknV .mbr-section-subtitle {
  color: #000000;
  font-weight: 300;
}
.cid-rnUboTOknV .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rnUboTOknV .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-rnUboTOknV .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-rnUboTOknV .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-rnUboTOknV .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #0f7699;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-rnUboTOknV .card {
  min-height: 300px;
}
.cid-rnUboTOknV .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-rnUboTOknV .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-rnUboTOknV .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-rnUboTOknV .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-rnYDYslro4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rnYDYslro4 .mbr-section-subtitle {
  color: #000000;
}
.cid-rnYDU5Rr3s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rnYDU5Rr3s .mbr-text,
.cid-rnYDU5Rr3s blockquote {
  color: #767676;
}
.cid-rnYDU5Rr3s .mbr-text P {
  color: #000000;
}
.cid-rnUchysrUQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rnUchysrUQ .mbr-text {
  color: #767676;
}
.cid-rnUchysrUQ .mbr-text p {
  background: #073b4c;
}
.cid-rnUchysrUQ .mbr-text P {
  color: #ffffff;
  text-align: center;
}
.cid-roaxWI8vhV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-roaxWI8vhV .mbr-section-subtitle {
  color: #000000;
}
.cid-roayhog0OB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-roayhog0OB .mbr-text,
.cid-roayhog0OB blockquote {
  color: #767676;
}
.cid-roayhog0OB .mbr-text P {
  color: #000000;
}
.cid-tgUTVnbYOz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e3faff;
}
.cid-tgUTVnbYOz .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgUTVnbYOz .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #073b4c;
}
@media (max-width: 767px) {
  .cid-tgUTVnbYOz .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-tgUTVnbYOz .separline {
  position: relative;
}
.cid-tgUTVnbYOz .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #073b4c;
}
@media (max-width: 767px) {
  .cid-tgUTVnbYOz .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-tgUTVnbYOz .mbr-section-title {
  color: #073b4c;
}
.cid-sqdMKQUvm2 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/ic-company-tacho-gray.svg");
}
.cid-sqdMKQUvm2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sqdMKQUvm2 .btn {
  margin: 0 0 .5rem 0;
}
.cid-sqdMKQUvm2 H2 {
  color: #ffffff;
}
.cid-rnYdxwOHbP {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rnYdxwOHbP h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-rnYdxwOHbP p {
  color: #767676;
}
.cid-rnYdxwOHbP .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-rnYdxwOHbP .card-wrapper .card-box {
  padding: 2rem 2rem 2rem 0;
  width: 100%;
}
.cid-rnYdxwOHbP .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-rnYdxwOHbP .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-rnYdxwOHbP .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-rnYdxwOHbP .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-rnYdxwOHbP H2 {
  text-align: center;
}
.cid-rnYdxwOHbP .cost {
  color: #149dcc;
}
.cid-rnYdxwOHbP .b-descr {
  color: #000000;
  text-align: left;
}
.cid-rnUfrwzVEX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rnUfrwzVEX .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rnUfrwzVEX .section-text {
  padding: 2rem 0;
}
.cid-rnUfrwzVEX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rnUfrwzVEX .inner-container {
    width: 100% !important;
  }
}
.cid-snG89U2FUK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b2ccd2;
}
.cid-snG89U2FUK .mbr-text,
.cid-snG89U2FUK blockquote {
  color: #767676;
}
.cid-snG89U2FUK .mbr-text P {
  color: #000000;
}
.cid-snG89U2FUK .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-utUB2mOyJ7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUB2mOyJ7 .form-control,
.cid-utUB2mOyJ7 .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUB2mOyJ7 .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUB2mOyJ7 textarea.form-control {
  min-height: 188px;
}
.cid-utUB2mOyJ7 .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUB2mOyJ7 .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rWLFt15nRC {
  padding-top: 120px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/kontrol-trk-top-1900x437.jpg");
}
.cid-rWLFt15nRC .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rWLFt15nRC .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rWLFt15nRC .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rWLFt15nRC .mbr-text {
    text-align: center;
  }
}
.cid-rXICn30pDh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rXICn30pDh .mbr-text,
.cid-rXICn30pDh .mbr-section-subtitle {
  color: #767676;
}
.cid-rXICn30pDh .card-title {
  color: #66458e;
}
.cid-rXICn30pDh .card .card-img span {
  color: #0f7699;
  font-size: 60px;
  background: linear-gradient(45deg, #0f7699, #073b4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rXICn30pDh .mbr-section-subtitle,
  .cid-rXICn30pDh .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rXICn30pDh .card .card-img span {
    background: none;
  }
}
.cid-rXICn30pDh .mbr-text {
  color: #000000;
}
.cid-rXICn30pDh .mbr-section-subtitle {
  color: #000000;
}
.cid-rXICn30pDh .card-title,
.cid-rXICn30pDh .card-img {
  color: #000000;
}
.cid-rZ4LxiwOdw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/audit-monitoring.svg");
}
.cid-rZ4LxiwOdw .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ4LxiwOdw .btn {
  margin: 0 0 .5rem 0;
}
.cid-rZ4LxiwOdw H2 {
  color: #ffffff;
}
.cid-rXKuOr4fZf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gradient-backround-infokontro.svg");
}
.cid-rXKuOr4fZf h2 {
  text-align: left;
}
.cid-rXKuOr4fZf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rXKuOr4fZf p {
  color: #767676;
  text-align: left;
}
.cid-rXKuOr4fZf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rXKuOr4fZf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rXKuOr4fZf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rXKuOr4fZf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rXKuOr4fZf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rXKuOr4fZf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rXKuOr4fZf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rXKuOr4fZf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rXKuOr4fZf .card-img span {
    font-size: 40px !important;
  }
}
.cid-rXKuOr4fZf P {
  color: #000000;
}
.cid-rXKuOr4fZf H2 {
  color: #073b4c;
}
.cid-rXKuPTEds1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gradient-backround-green.svg");
}
.cid-rXKuPTEds1 h2 {
  text-align: left;
}
.cid-rXKuPTEds1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rXKuPTEds1 p {
  color: #767676;
  text-align: left;
}
.cid-rXKuPTEds1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rXKuPTEds1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rXKuPTEds1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rXKuPTEds1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rXKuPTEds1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rXKuPTEds1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rXKuPTEds1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rXKuPTEds1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rXKuPTEds1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rXKuPTEds1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rXKuPTEds1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rXKuPTEds1 P {
  color: #000000;
}
.cid-rXKuPTEds1 H2 {
  color: #073b4c;
}
.cid-tCvNuPNgC0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tCvNuPNgC0 .mbr-section-subtitle,
.cid-tCvNuPNgC0 .mbr-text {
  color: #767676;
}
.cid-tCvNuPNgC0 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tCvNuPNgC0 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tCvNuPNgC0 .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tCvNuPNgC0 .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tCvNuPNgC0 .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tCvNuPNgC0 .card-wrapper .card-img img {
  width: 100%;
}
.cid-tCvNuPNgC0 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tCvNuPNgC0 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tCvNuPNgC0 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tCvNuPNgC0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tCvNuPNgC0 .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tCvNuPNgC0 .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tCvNuPNgC0 .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tCvNuPNgC0 .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tCvNuPNgC0 .mbr-section-subtitle {
  color: #000000;
}
.cid-tCvNuPNgC0 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tCvNuPNgC0 .card-title {
  text-align: center;
}
.cid-tCvNuPNgC0 .mbr-section-title {
  color: #073b4c;
}
.cid-rXKuQiBUEx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gradient-backround-infokontro.svg");
}
.cid-rXKuQiBUEx h2 {
  text-align: left;
}
.cid-rXKuQiBUEx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rXKuQiBUEx p {
  color: #767676;
  text-align: left;
}
.cid-rXKuQiBUEx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rXKuQiBUEx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rXKuQiBUEx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rXKuQiBUEx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rXKuQiBUEx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rXKuQiBUEx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rXKuQiBUEx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rXKuQiBUEx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rXKuQiBUEx .card-img span {
    font-size: 40px !important;
  }
}
.cid-rXKuQiBUEx P {
  color: #000000;
}
.cid-rXKuQiBUEx H2 {
  color: #073b4c;
}
.cid-rXKuQDKpM9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gradient-backround-green.svg");
}
.cid-rXKuQDKpM9 h2 {
  text-align: left;
}
.cid-rXKuQDKpM9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rXKuQDKpM9 p {
  color: #767676;
  text-align: left;
}
.cid-rXKuQDKpM9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rXKuQDKpM9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rXKuQDKpM9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rXKuQDKpM9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rXKuQDKpM9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rXKuQDKpM9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rXKuQDKpM9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rXKuQDKpM9 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rXKuQDKpM9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rXKuQDKpM9 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rXKuQDKpM9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rXKuQDKpM9 P {
  color: #000000;
}
.cid-rXKuQDKpM9 H2 {
  color: #073b4c;
}
.cid-rXKwT5bVi9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rXKwT5bVi9 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-rXKwT5bVi9 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-rXKwT5bVi9 .list-img {
  width: 100px;
}
.cid-rXKwT5bVi9 .ico2 {
  color: #767676;
  font-size: 1.2rem;
}
.cid-rXKwT5bVi9 .btn {
  margin: 0px !important;
}
.cid-rXKwT5bVi9 .text-box {
  padding: 1rem;
}
.cid-rXKwT5bVi9 .text-box p {
  margin: 0;
}
.cid-rXKwT5bVi9 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-rXKwT5bVi9 .ico-box p {
  margin: 0;
}
.cid-rXKwT5bVi9 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rXKwT5bVi9 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rXKwT5bVi9 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rXKwT5bVi9 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-rXKwT5bVi9 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-rXKwT5bVi9 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-rXKwT5bVi9 .carousel-indicators li {
  display: inline-block;
}
.cid-rXKwT5bVi9 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-rXKwT5bVi9 .carousel-indicators li.active {
  border: 0px;
}
.cid-rXKwT5bVi9 .li1,
.cid-rXKwT5bVi9 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-topaz-900x511.jpg");
}
.cid-rXKwT5bVi9 .li2,
.cid-rXKwT5bVi9 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-tanker-900x511.jpg");
}
.cid-rXKwT5bVi9 .li3,
.cid-rXKwT5bVi9 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-agrosignal-900x511.jpg");
}
.cid-rXKwT5bVi9 .li4,
.cid-rXKwT5bVi9 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-card-reader-900x511.jpg");
}
.cid-rXKwT5bVi9 .li5,
.cid-rXKwT5bVi9 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-motherboard-900x511.jpg");
}
.cid-rXKwT5bVi9 .li6,
.cid-rXKwT5bVi9 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/kontrol-trk-photo-report-900x511.jpg");
}
@media (max-width: 992px) {
  .cid-rXKwT5bVi9 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-rXKwT5bVi9 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-rXKwT5bVi9 .card-title2 {
  color: #767676;
}
.cid-rXKwT5bVi9 .sq {
  color: #767676;
}
.cid-rXKwT5bVi9 .item {
  color: #767676;
}
.cid-utUBri9JOO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBri9JOO .form-control,
.cid-utUBri9JOO .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBri9JOO .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBri9JOO textarea.form-control {
  min-height: 188px;
}
.cid-utUBri9JOO .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBri9JOO .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-saPLm2kOJV {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/audit-report-1920x1281.jpg");
}
.cid-saPLm2kOJV .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-saPLm2kOJV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-saPLm2kOJV .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-saPLm2kOJV .mbr-text {
    text-align: center;
  }
}
.cid-saPLpXpW9f {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-saPLpXpW9f .mbr-text,
.cid-saPLpXpW9f blockquote {
  color: #767676;
}
.cid-saPLpXpW9f .mbr-text {
  color: #000000;
}
.cid-saPLuMlctj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/buses-tablo-back-1920x900.jpg");
}
.cid-saPLuMlctj .mbr-overlay {
  background: #215668;
  opacity: 0.7;
}
.cid-saPLuMlctj p {
  color: #767676;
}
.cid-saPLuMlctj .item:focus,
.cid-saPLuMlctj span:focus {
  outline: none;
}
.cid-saPLuMlctj .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-saPLuMlctj .item-wrapper {
  position: relative;
}
.cid-saPLuMlctj .item-btn,
.cid-saPLuMlctj h4,
.cid-saPLuMlctj h5 {
  margin: 0;
}
.cid-saPLuMlctj .item-content {
  padding-top: 2rem;
}
.cid-saPLuMlctj .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-saPLuMlctj item-text {
  color: #000000;
}
.cid-saQ1TrkHAT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/shtihmnano-keynote-1920x700.jpg");
}
.cid-saQ1TrkHAT .mbr-section-text {
  color: #000000;
}
.cid-saQ1TrkHAT .mbr-section-subtitle {
  color: #000000;
}
.cid-saQ1TrkHAT .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-saQ1TrkHAT .mbr-iconfont {
  font-size: 48px;
}
.cid-saQ1TrkHAT .card-img {
  margin-bottom: 1.5rem;
}
.cid-saQ1TrkHAT .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-saQ1TrkHAT .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-saQ1TrkHAT .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-saQ1TrkHAT .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #000000;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #000000;
}
.cid-saQ1TrkHAT .nav-tabs .nav-link:hover {
  background: #149dcc;
}
.cid-saQ1TrkHAT .nav-tabs .nav-link.active {
  color: #ffffff;
  font-style: normal;
  border: 2px solid #149dcc;
  background: #149dcc;
}
.cid-saQ1TrkHAT .nav-tabs .nav-link.active:hover {
  border: 2px solid #149dcc;
}
.cid-sbB3z99GYC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/audit-monitoring.svg");
}
.cid-sbB3z99GYC .mbr-section-subtitle {
  color: #767676;
}
.cid-sbB3z99GYC .btn {
  margin: 0 0 .5rem 0;
}
.cid-sbB3z99GYC H2 {
  color: #ffffff;
}
.cid-utUyNU7fsz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyNU7fsz .form-control,
.cid-utUyNU7fsz .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyNU7fsz .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyNU7fsz textarea.form-control {
  min-height: 188px;
}
.cid-utUyNU7fsz .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyNU7fsz .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfiYp2cU6v {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sfiYp2cU6v .mbr-text,
.cid-sfiYp2cU6v blockquote {
  color: #767676;
}
.cid-sfiYp2cU6v .mbr-text P {
  text-align: left;
}
.cid-sfiYp2cU6v .mbr-text {
  color: #ffffff;
}
.cid-sfhcyBhzrI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
.cid-sfhCuH8ZhQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfhCuH8ZhQ .mbr-section-subtitle {
  color: #000000;
}
.cid-sfhwuhOsyY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfhwuhOsyY .mbr-text {
  color: #000000;
}
.cid-sfhwuhOsyY h4 {
  text-align: center;
}
.cid-sfhwuhOsyY p {
  text-align: center;
}
.cid-sfhwuhOsyY .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sfhwuxYXpn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfhwuxYXpn .mbr-text {
  color: #000000;
}
.cid-sfhwuxYXpn h4 {
  text-align: center;
}
.cid-sfhwuxYXpn p {
  text-align: center;
}
.cid-sfhwuxYXpn .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sfhCY8X4Kg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #0f7699;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sfhCY8X4Kg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfhCY8X4Kg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfhCY8X4Kg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfhCY8X4Kg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfhCY8X4Kg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #073b4c;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfhCY8X4Kg .mbr-gallery-item > div:hover::before {
  opacity: 0.7 !important;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #232323 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter ul {
  display: block;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter li.active .btn {
  color: #149dcc !important;
  background: transparent;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #149dcc !important;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sfhCY8X4Kg .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sfhCY8X4Kg .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #149dcc !important;
}
.cid-sfhCY8X4Kg .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sfhCY8X4Kg .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sfhCY8X4Kg .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sfhCY8X4Kg .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sfhCY8X4Kg .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sfhCY8X4Kg .icon-focus:before {
  content: '\e95e';
}
.cid-sfhCY8X4Kg .icon-focus {
  font-family: 'MobiriseIcons' !important;
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sfhCY8X4Kg .mbr-section-title {
  margin: 0;
}
.cid-sfhCY8X4Kg .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sfhCY8X4Kg .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sfhCY8X4Kg .mbr-section-title,
.cid-sfhCY8X4Kg .underline {
  color: #ffffff;
}
.cid-sfhCY8X4Kg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfhCY8X4Kg .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-sfj1K4C979 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #e4d295;
}
.cid-sfj1K4C979 .mbr-text {
  color: #efefef;
}
.cid-sfj1K4C979 .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #0f7699;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
}
.cid-sfj1K4C979 .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sfj1K4C979 .card-wrapper:hover .ico2 {
  color: #149dcc !important;
}
.cid-sfj1K4C979 .text-info:hover {
  color: inherit!important;
}
.cid-sfj1K4C979 .ico2 {
  color: #879a9f !important;
  transition: all 0.6s;
}
.cid-sfj1K4C979 .card-box {
  padding: 0rem 1rem;
}
.cid-sfj1K4C979 .card-img {
  width: auto;
}
.cid-sfj1K4C979 .ico1 {
  font-size: 3rem !important;
}
.cid-sfj1K4C979 h3,
.cid-sfj1K4C979 h4 {
  padding: 0;
  margin: 0;
}
.cid-sfj1K4C979 .card-title,
.cid-sfj1K4C979 .card-img {
  color: #232323;
}
.cid-sfj1K4C979 H3 {
  color: #000000;
}
.cid-sfj1K4C979 H1 {
  color: #232323;
}
.cid-sfj1K4C979 .card-title {
  color: #ffffff;
}
.cid-ssbwiw0Dh9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-ssbwiw0Dh9 .mbr-text,
.cid-ssbwiw0Dh9 blockquote {
  color: #767676;
}
.cid-ssbwiw0Dh9 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sV2vW1ix1u {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/promo-top-1900x750.jpg");
}
.cid-sV2vW1ix1u .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sV2vW1ix1u .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sV2vW1ix1u .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sV2vW1ix1u .mbr-text {
    text-align: center;
  }
}
.cid-tuGHMFuMC9 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tuGHMFuMC9 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tuGHMFuMC9 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #149dcc;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #149dcc;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-tuGHMFuMC9 .nav-tabs .nav-link:hover {
  background-color: #073b4c;
}
.cid-tuGHMFuMC9 .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #073b4c;
}
.cid-tuGHMFuMC9 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #073b4c;
}
.cid-tuGHMFuMC9 .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-tuGHMFuMC9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tuGHMFuMC9 p {
  color: #767676;
}
.cid-tuGHMFuMC9 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-tuGHMFuMC9 .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tuGHMFuMC9 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-tuGHMFuMC9 P {
  color: #000000;
  text-align: left;
}
.cid-utUK836WuU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUK836WuU .form-control,
.cid-utUK836WuU .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUK836WuU .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUK836WuU textarea.form-control {
  min-height: 188px;
}
.cid-utUK836WuU .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUK836WuU .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sn6o209lKs {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sn6o209lKs .mbr-text,
.cid-sn6o209lKs blockquote {
  color: #767676;
}
.cid-sn6o209lKs .mbr-text P {
  text-align: left;
}
.cid-sn6o209lKs .mbr-text {
  color: #ffffff;
}
.cid-sn6o20tBLy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-sn6o20tBLy DIV {
  color: #232323;
}
.cid-sn6o20tBLy SPAN {
  color: #232323;
}
.cid-sn6o20tBLy .mbr-section-subtitle {
  color: #232323;
}
.cid-sn6o21bPcR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sn6o21bPcR .mbr-text,
.cid-sn6o21bPcR blockquote {
  color: #767676;
}
.cid-sn6o21bPcR .mbr-text I {
  color: #232323;
}
.cid-sn6o21bPcR .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-sn6o21bPcR .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snnPNv1KSX {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-snnPNv1KSX .mbr-text,
.cid-snnPNv1KSX blockquote {
  color: #767676;
}
.cid-snnPNv1KSX .mbr-text P {
  text-align: left;
}
.cid-snnPNv1KSX .mbr-text {
  color: #ffffff;
}
.cid-snnPNvoWrv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-snnPNvoWrv DIV {
  color: #232323;
}
.cid-snnPNvoWrv SPAN {
  color: #232323;
}
.cid-snnPNvoWrv .mbr-section-subtitle {
  color: #232323;
}
.cid-snnPNvoWrv H2 {
  color: #000000;
}
.cid-snnPNw7X8D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-snnPNw7X8D .mbr-text,
.cid-snnPNw7X8D blockquote {
  color: #767676;
}
.cid-snnPNw7X8D .mbr-text I {
  color: #232323;
}
.cid-snnPNw7X8D .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-snnPNw7X8D .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rAvKnkQuVn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-rAvKnkQuVn .mbr-text,
.cid-rAvKnkQuVn blockquote {
  color: #767676;
}
.cid-rAvKnkQuVn .mbr-text P {
  text-align: left;
}
.cid-rAvKnkQuVn .mbr-text {
  color: #ffffff;
}
.cid-rAvKnltYbM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rAvKnltYbM .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rAvKnltYbM .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-rAvKnltYbM .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-rAvKnltYbM .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-rAvKnltYbM .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-rAvKnltYbM .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-rAvKnltYbM .mbr-section-subtitle {
  color: #000000;
}
.cid-rAvKnltYbM p {
  color: #767676;
}
.cid-rAvKnltYbM .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-rAvKnltYbM .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rAvKnltYbM .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rAvKnltYbM P {
  color: #000000;
}
.cid-rAvKnmsDno {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rAvKnmsDno .mbr-text {
  color: #ffffff;
}
.cid-rAvKnmsDno h4 {
  text-align: center;
}
.cid-rAvKnmsDno p {
  text-align: center;
}
.cid-rAvKnmsDno .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rAvKnmsDno .card-title,
.cid-rAvKnmsDno .card-img {
  color: #ffffff;
}
.cid-s6RIBGu4IV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-s6RIBGu4IV P {
  color: #767676;
}
.cid-utUBwqHTPL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBwqHTPL .form-control,
.cid-utUBwqHTPL .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBwqHTPL .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBwqHTPL textarea.form-control {
  min-height: 188px;
}
.cid-utUBwqHTPL .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBwqHTPL .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soBj45rhtG {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-soBj45rhtG .mbr-text,
.cid-soBj45rhtG blockquote {
  color: #767676;
}
.cid-soBj45rhtG .mbr-text P {
  text-align: left;
}
.cid-soBj45rhtG .mbr-text {
  color: #ffffff;
}
.cid-t727jJ4z4c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-t727jJ4z4c .line {
  background-color: #073b4c;
  color: #073b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t727jJ4z4c .section-text {
  padding: 2rem 0;
}
.cid-t727jJ4z4c .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t727jJ4z4c .inner-container {
    width: 100% !important;
  }
}
.cid-soBj45P5Yu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-soBj45P5Yu DIV {
  color: #232323;
}
.cid-soBj45P5Yu SPAN {
  color: #232323;
}
.cid-soBj45P5Yu .mbr-section-subtitle {
  color: #232323;
}
.cid-soBj46vZGw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soBj46vZGw .mbr-text,
.cid-soBj46vZGw blockquote {
  color: #767676;
}
.cid-soBj46vZGw .mbr-text I {
  color: #232323;
}
.cid-soBj46vZGw .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-soBj46vZGw .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sp4B2uq7hS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sp4B2uq7hS .mbr-text,
.cid-sp4B2uq7hS blockquote {
  color: #767676;
}
.cid-sp4B2uq7hS .mbr-text P {
  text-align: left;
}
.cid-sp4B2uq7hS .mbr-text {
  color: #ffffff;
}
.cid-sp4B2uMUg5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-sp4B2uMUg5 DIV {
  color: #232323;
}
.cid-sp4B2uMUg5 SPAN {
  color: #232323;
}
.cid-sp4B2uMUg5 .mbr-section-subtitle {
  color: #232323;
}
.cid-sp4B2uMUg5 H2 {
  color: #000000;
}
.cid-sp4B2vwGXy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sp4B2vwGXy .mbr-text,
.cid-sp4B2vwGXy blockquote {
  color: #767676;
}
.cid-sp4B2vwGXy .mbr-text I {
  color: #232323;
}
.cid-sp4B2vwGXy .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-sp4B2vwGXy .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqdvG2pthE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sqdvG2pthE .mbr-text,
.cid-sqdvG2pthE blockquote {
  color: #767676;
}
.cid-sqdvG2pthE .mbr-text P {
  text-align: left;
}
.cid-sqdvG2pthE .mbr-text {
  color: #ffffff;
}
.cid-sqdn46kUEu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banner-taho-front-1900x901.jpg");
}
.cid-sqdoiyvHHe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sqdoiyvHHe img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sqdoiyvHHe img:hover {
  transform: scale(1.1);
}
.cid-sqdoiyvHHe .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sqdoiyvHHe h2 {
  padding: 0;
  margin: 0;
}
.cid-sqdoiyvHHe .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sqdoiyvHHe .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sqdoiyvHHe .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sqdoiyvHHe .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-sqdoiyvHHe .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sqdoiyvHHe .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sqdoiyvHHe .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sqdoiyvHHe .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sqdoiyvHHe .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sqdoiyvHHe H2 {
  color: #333333;
}
.cid-sqdoiyvHHe .mbr-text {
  color: #000000;
}
.cid-sqdr450eK0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqdr450eK0 .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sqdr450eK0 .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sqdr450eK0 img {
  object-fit: contain;
}
.cid-sqdr450eK0 .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sqdr450eK0 .mbr-text:after,
  .cid-sqdr450eK0 .mbr-text:before {
    display: none;
  }
}
.cid-sqdrs6wng6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqdrs6wng6 .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sqdrs6wng6 .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sqdrs6wng6 img {
  object-fit: contain;
}
.cid-sqdrs6wng6 .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sqdrs6wng6 .mbr-text:after,
  .cid-sqdrs6wng6 .mbr-text:before {
    display: none;
  }
}
.cid-sqdrPxZcrk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqdrPxZcrk .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sqdrPxZcrk .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sqdrPxZcrk img {
  object-fit: contain;
}
.cid-sqdrPxZcrk .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sqdrPxZcrk .mbr-text:after,
  .cid-sqdrPxZcrk .mbr-text:before {
    display: none;
  }
}
.cid-thzGna2wFe {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thzGna2wFe .mbr-section-subtitle {
  color: #767676;
}
.cid-thzGna2wFe .container-table {
  margin: 0 auto;
}
.cid-thzGna2wFe .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-thzGna2wFe .dataTables_wrapper {
  display: block;
}
.cid-thzGna2wFe .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-thzGna2wFe .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-thzGna2wFe table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #c1c1c1;
  margin-bottom: 0;
}
.cid-thzGna2wFe table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-thzGna2wFe table th:hover {
  background: #c1c1c1;
  color: #000000;
}
.cid-thzGna2wFe table td {
  border-top: 1px solid #c1c1c1;
}
.cid-thzGna2wFe table.table {
  background: #efefef;
}
.cid-thzGna2wFe .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-thzGna2wFe .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-thzGna2wFe .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-thzGna2wFe .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-thzGna2wFe .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-thzGna2wFe .dataTables_filter {
    text-align: center;
  }
  .cid-thzGna2wFe .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-thzGna2wFe .head-item {
  text-align: center;
}
.cid-thzGna2wFe .body-item {
  text-align: center;
}
.cid-sqdsK0XFiJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqdsK0XFiJ .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sqdsK0XFiJ .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sqdsK0XFiJ img {
  object-fit: contain;
}
.cid-sqdsK0XFiJ .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sqdsK0XFiJ .mbr-text:after,
  .cid-sqdsK0XFiJ .mbr-text:before {
    display: none;
  }
}
.cid-sqdtgb9kmg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqdtgb9kmg .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sqdtgb9kmg .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sqdtgb9kmg img {
  object-fit: contain;
}
.cid-sqdtgb9kmg .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sqdtgb9kmg .mbr-text:after,
  .cid-sqdtgb9kmg .mbr-text:before {
    display: none;
  }
}
.cid-sqdn47a4B9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sqdn47a4B9 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sqdn47a4B9 .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-sqdn47a4B9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sqdn47a4B9 .inner-container {
    width: 100% !important;
  }
}
.cid-sqdn47a4B9 .section-text DIV {
  color: #ffffff;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svNKiJsm3O {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/novye-parvila-rnis-moskva-1920x463.jpg");
}
.cid-svNKiJsm3O .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-svNKiJsm3O .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svNKiJsm3O .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-svNKiJsm3O .mbr-text {
    text-align: center;
  }
}
.cid-svNKtSx07H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNKtSx07H .mbr-section-subtitle {
  color: #767676;
}
.cid-svNKvZlLeb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-svNKvZlLeb .mbr-text {
  color: #000000;
}
.cid-tvabiRZoCU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partners-card-back-1900x422.jpg");
}
.cid-sMhMkbVEIy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sMhMkbVEIy .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-sMhMkbVEIy .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-sMhMkbVEIy .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-sMhMkbVEIy .separline {
  position: relative;
}
.cid-sMhMkbVEIy .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sMhMkbVEIy .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-tq0z95WePw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tq0z95WePw .mbr-text,
.cid-tq0z95WePw blockquote {
  color: #767676;
}
.cid-tq0z95WePw .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tq0z95WePw .mbr-text P {
  text-align: center;
}
.cid-svNOxUvRkM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svNOxUvRkM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-svNOxUvRkM .step {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-svNOxUvRkM .separline {
  position: relative;
}
.cid-svNOxUvRkM .separline:after {
  top: 44px;
  left: 18px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (20px + 4px) * 2);
  background-color: #efefef;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sH4SIDWytt {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-sH4SIDWytt .mbr-text,
.cid-sH4SIDWytt blockquote {
  color: #767676;
}
.cid-sH4SIDWytt .mbr-text P {
  text-align: left;
}
.cid-sH4SIDWytt .mbr-text {
  color: #ffffff;
}
.cid-sHb6MHuN3v {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/tacho-hand-top-1900x679.jpg");
}
.cid-sH6NLHVc4p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sH6NLHVc4p .mbr-text {
  color: #000000;
}
.cid-sH6ONorb5p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sH6ONorb5p .mbr-text {
  color: #000000;
}
.cid-sUL75LNI0D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sUL75LNI0D .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUL75LNI0D .section-text {
  padding: 2rem 0;
}
.cid-sUL75LNI0D .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUL75LNI0D .inner-container {
    width: 100% !important;
  }
}
.cid-sH6PIpBnxI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sH6PIpBnxI .mbr-text {
  color: #000000;
}
.cid-sH6PIpBnxI .mbr-text P {
  text-align: left;
}
.cid-sHaPkumHHs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sHaPkumHHs .mbr-text {
  color: #000000;
}
.cid-sULbG26Wj8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sULbG26Wj8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  font-weight: 300;
}
.cid-sULbG26Wj8 .step {
  width: 72px;
  height: 72px;
  font-size: 36px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sULbG26Wj8 .separline .step-wrapper {
    position: relative;
  }
  .cid-sULbG26Wj8 .separline .step-wrapper:before,
  .cid-sULbG26Wj8 .separline .step-wrapper:after {
    top: 38px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 36px - 8px);
    background-color: #efefef;
  }
  .cid-sULbG26Wj8 .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-sULbG26Wj8 .separline .step-wrapper:after {
    left: calc(50% + 8px + 36px);
  }
  .cid-sULbG26Wj8 .separline.last-child .step-wrapper:after,
  .cid-sULbG26Wj8 .separline:nth-child(3n) .step-wrapper:after,
  .cid-sULbG26Wj8 .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-sULbG26Wj8 .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-sULbG26Wj8 .mbr-section-title {
  color: #ffffff;
}
.cid-sULbG26Wj8 .mbr-step-title {
  color: #ffffff;
}
.cid-sULbG26Wj8 .mbr-step-text {
  color: #ffffff;
}
.cid-sHarFeeGzQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sHarFeeGzQ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sHarFeeGzQ .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-sHarFeeGzQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sHarFeeGzQ .inner-container {
    width: 100% !important;
  }
}
.cid-sMgCPOXjj4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sMgCPOXjj4 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  font-weight: 300;
}
.cid-sMgCPOXjj4 .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-sMgCPOXjj4 .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-sMgCPOXjj4 .separline {
  position: relative;
}
.cid-sMgCPOXjj4 .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sMgCPOXjj4 .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-sHaSqpT5o7 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/tacho-trucks-1920x743.jpg");
}
.cid-sH4S9K1CHz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sH4S9K1CHz .mbr-section-subtitle {
  color: #767676;
}
.cid-sH4S9Kh6AZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sH4S9Kh6AZ .mbr-text,
.cid-sH4S9Kh6AZ blockquote {
  color: #767676;
}
.cid-sH4S9Kh6AZ .mbr-text {
  color: #000000;
}
.cid-sH4S9KuN34 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-sH4S9KuN34 .mbr-section-btn > * {
  margin: 0;
}
.cid-sH4S9KuN34 h4 {
  font-weight: 500;
}
.cid-sH4S9KuN34 p {
  color: #232323;
}
.cid-sH4S9KuN34 .aside-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-sH4S9KuN34 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sH4S9KuN34 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sH4S9KuN34 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sH4S9KuN34 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sH4S9KuN34 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sH4S9KuN34 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sH4S9KuN34 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sH4S9KuN34 .card-img span {
    font-size: 40px !important;
  }
}
.cid-sH4S9KuN34 .cost {
  text-decoration: line-through;
  color: #767676;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sXvuNapKes {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/californian-roads-will-make-use-of-piezoelectric-materials-to-generate-clean-energy3-1.jpg");
}
.cid-sXvuTaqhdn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sXvuTaqhdn .mbr-text,
.cid-sXvuTaqhdn blockquote {
  color: #767676;
}
.cid-sXvuTaqhdn .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t07TJELpvs {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-t07TJELpvs .mbr-text,
.cid-t07TJELpvs blockquote {
  color: #767676;
}
.cid-t07TJELpvs .mbr-text P {
  text-align: left;
}
.cid-t07TJELpvs .mbr-text {
  color: #ffffff;
}
.cid-t07TJFhl0s {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/wialon-local-header-1900x1267.jpg");
}
.cid-t07TJFhl0s .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t07TJFhl0s .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t07TJFhl0s .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t07TJFhl0s .mbr-text {
    text-align: center;
  }
}
.cid-t20Lsz2agN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t20Lsz2agN h3 {
  font-weight: 300;
}
.cid-t20Lsz2agN .card-img {
  width: initial;
}
.cid-t20Lsz2agN .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-t20Lsz2agN .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-t20Lsz2agN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t20Lsz2agN .mbr-section-subtitle {
  color: #000000;
}
.cid-t20Lsz2agN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-t20Lsz2agN .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t20Lsz2agN .mbr-al-i-c {
  align-items: center;
}
.cid-t20Lsz2agN .card-title,
.cid-t20Lsz2agN .card-img {
  text-align: center;
}
.cid-t20Lsz2agN .mbr-section-title {
  color: #073b4c;
}
.cid-t07TJI6qlv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-t07TJI6qlv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t07TJI6qlv H2 {
  color: #ffffff;
}
.cid-t07TJIkUbR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-t07TJIkUbR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t07TJIkUbR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t07TJIkUbR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t07TJIkUbR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t07TJIkUbR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t07TJIkUbR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t07TJIkUbR .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-t07TJIkUbR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t07TJIkUbR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t07TJIRGH5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/wialon-local-line-1-1920x300.jpg");
}
.cid-t07TJIRGH5 H2 {
  color: #000000;
}
.cid-t07TJIRGH5 .mbr-section-subtitle {
  color: #000000;
}
.cid-t0MBrjzhb8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ic-company-presentation-1920x500.jpg");
}
.cid-t0MBrjzhb8 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t0MBrjzhb8 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t0MBrjzhb8 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t0MBrjzhb8 .mbr-text {
    text-align: center;
  }
}
.cid-t21AgJpPeQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t21AgJpPeQ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  font-weight: 300;
}
.cid-t21AgJpPeQ .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
  color: #073b4c;
}
@media (max-width: 767px) {
  .cid-t21AgJpPeQ .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-t21AgJpPeQ .separline {
  position: relative;
}
.cid-t21AgJpPeQ .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t21AgJpPeQ .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-t21AgJpPeQ .mbr-section-title {
  color: #073b4c;
}
.cid-utUzdOEx97 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzdOEx97 .form-control,
.cid-utUzdOEx97 .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzdOEx97 .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzdOEx97 textarea.form-control {
  min-height: 188px;
}
.cid-utUzdOEx97 .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzdOEx97 .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t26Gi6SuOr {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-t26Gi6SuOr .mbr-text,
.cid-t26Gi6SuOr blockquote {
  color: #767676;
}
.cid-t26Gi6SuOr .mbr-text P {
  text-align: left;
}
.cid-t26Gi6SuOr .mbr-text {
  color: #ffffff;
}
.cid-t26HLXGmpX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-t26HP59P96 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t26HP59P96 .mbr-text,
.cid-t26HP59P96 blockquote {
  color: #767676;
}
.cid-t26HP59P96 .mbr-text {
  color: #000000;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2S3AGzpEX {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-t2S3AGzpEX .mbr-text,
.cid-t2S3AGzpEX blockquote {
  color: #767676;
}
.cid-t2S3AGzpEX .mbr-text P {
  text-align: left;
}
.cid-t2S3AGzpEX .mbr-text {
  color: #ffffff;
}
.cid-t2S3AGP5i2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t2S3AGP5i2 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-t2S3AGP5i2 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-t2S3AGP5i2 .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-t2S3AGP5i2 .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-t2S3AGP5i2 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-t2S3AGP5i2 .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-t2S3AGP5i2 .mbr-section-subtitle {
  color: #000000;
}
.cid-t2S3AGP5i2 p {
  color: #767676;
}
.cid-t2S3AGP5i2 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-t2S3AGP5i2 .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-t2S3AGP5i2 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-t2S3AGP5i2 P {
  color: #000000;
}
.cid-t2S3AHmzkq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-t2S3AHmzkq .mbr-text {
  color: #ffffff;
}
.cid-t2S3AHmzkq h4 {
  text-align: center;
}
.cid-t2S3AHmzkq p {
  text-align: center;
}
.cid-t2S3AHmzkq .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-t2S3AHmzkq .card-title,
.cid-t2S3AHmzkq .card-img {
  color: #ffffff;
}
.cid-t2SmyjABbF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t2SmyjABbF .mbr-section-subtitle {
  color: #767676;
}
.cid-t2SmGziUQE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t2SmGziUQE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t2SmGziUQE p {
  color: #767676;
  text-align: left;
}
.cid-t2SmGziUQE .card-box {
  padding-top: 2rem;
}
.cid-t2SmGziUQE .card-wrapper {
  height: 100%;
}
.cid-t2SmGziUQE P {
  color: #000000;
}
.cid-t2SmGziUQE .card-title {
  text-align: center;
}
.cid-t2S3AHXLyR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-t2S3AHXLyR P {
  color: #767676;
}
.cid-utUBjBz2Nx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBjBz2Nx .form-control,
.cid-utUBjBz2Nx .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBjBz2Nx .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBjBz2Nx textarea.form-control {
  min-height: 188px;
}
.cid-utUBjBz2Nx .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBjBz2Nx .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t33KzD7m4g {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-t33KzD7m4g .mbr-text,
.cid-t33KzD7m4g blockquote {
  color: #767676;
}
.cid-t33KzD7m4g .mbr-text P {
  text-align: left;
}
.cid-t33KzD7m4g .mbr-text {
  color: #ffffff;
}
.cid-t33KzDDZqp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/wialon-local-header-1900x1267.jpg");
}
.cid-t33KzDDZqp .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t33KzDDZqp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t33KzDDZqp .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t33KzDDZqp .mbr-text {
    text-align: center;
  }
}
.cid-t33SwClCvA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t33SwClCvA .mbr-text,
.cid-t33SwClCvA blockquote {
  color: #767676;
}
.cid-t33SwClCvA .mbr-text {
  color: #000000;
}
.cid-t33SwClCvA .mbr-text P {
  text-align: left;
}
.cid-t341Ttk4uX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t341Ttk4uX .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-t341Ttk4uX .mbr-content-text {
  color: #232323;
  margin-bottom: 0;
}
.cid-t341Ttk4uX .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-t341Ttk4uX .img-text {
  width: 62px;
  height: 62px;
  font-size: 31px;
  border: 2px solid #149dcc;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-t341Ttk4uX .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-t341Ttk4uX .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-t341Ttk4uX .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-t341Ttk4uX .media-block {
    padding-left: 2rem;
  }
}
.cid-t341Ttk4uX .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-t341Ttk4uX .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-t341Ttk4uX .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t33KzEAUu4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t33KzEAUu4 .mbr-section-subtitle {
  color: #073b4c;
}
.cid-t33KzEAUu4 H2 {
  color: #073b4c;
}
.cid-t33KzEMDJv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t33KzEMDJv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t33KzEMDJv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t33KzEMDJv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t33KzEMDJv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t33KzEMDJv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t33KzEMDJv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t33KzEMDJv .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-t33KzEMDJv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t33KzEMDJv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t33KzFyGxU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ic-company-presentation-1920x500.jpg");
}
.cid-t33KzFyGxU .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t33KzFyGxU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t33KzFyGxU .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t33KzFyGxU .mbr-text {
    text-align: center;
  }
}
.cid-uu6B9fx11p {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mobiletracker-mariel-map-1920x662.jpg");
}
.cid-uu6B9fx11p .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uu6B9fx11p .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uu6B9fx11p .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uu6B9fx11p .mbr-text {
    text-align: center;
  }
}
.cid-t34ZVk5LIj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/glonasssoft-agrotechnology-banner-1240x524.jpg");
}
@media (min-width: 992px) {
  .cid-t34ZVk5LIj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t34ZVk5LIj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t34ZVk5LIj .mbr-text {
    text-align: center;
  }
}
.cid-t34ZVk5LIj .mbr-text,
.cid-t34ZVk5LIj .mbr-section-btn {
  color: #ffffff;
}
.cid-t34ZVk5LIj H1 {
  color: #ffffff;
}
.cid-utUzbmXm5Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzbmXm5Y .form-control,
.cid-utUzbmXm5Y .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzbmXm5Y .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzbmXm5Y textarea.form-control {
  min-height: 188px;
}
.cid-utUzbmXm5Y .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzbmXm5Y .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4bxHM83pL {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/agritechnology-big-banner-1920x700.jpg");
}
.cid-t3CVugWNH5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t3CVugWNH5 .mbr-text {
  color: #000000;
}
.cid-t3CVugWNH5 h4 {
  text-align: center;
}
.cid-t3CVugWNH5 p {
  text-align: center;
}
.cid-t3CVugWNH5 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-t3CVPTZrPW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3CVPTZrPW .mbr-section-subtitle {
  color: #232323;
}
.cid-t3CVPTZrPW H2 {
  color: #25aab2;
}
.cid-t3CVQOuHJC {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t3CVQOuHJC .mbr-text {
  color: #000000;
}
.cid-t3CVQOuHJC h4 {
  text-align: center;
}
.cid-t3CVQOuHJC p {
  text-align: center;
}
.cid-t3CVQOuHJC .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-t3CVxMBjNp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #25aab2;
}
.cid-t3CVxMBjNp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t3CVxMBjNp H2 {
  color: #ffffff;
}
.cid-t3CVFoX8VU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #25aab2;
}
.cid-t3CVFoX8VU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t3CVFoX8VU p {
  color: #767676;
  text-align: left;
}
.cid-t3CVFoX8VU .card-box {
  padding-top: 2rem;
}
.cid-t3CVFoX8VU .card-wrapper {
  height: 100%;
}
.cid-t3CVFoX8VU .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-t3CVFoX8VU P {
  color: #ffffff;
}
.cid-t3CVI19DpM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #25aab2;
}
.cid-t3CVI19DpM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t3CVI19DpM p {
  color: #767676;
  text-align: left;
}
.cid-t3CVI19DpM .card-box {
  padding-top: 2rem;
}
.cid-t3CVI19DpM .card-wrapper {
  height: 100%;
}
.cid-t3CVI19DpM .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-t3CVI19DpM P {
  color: #ffffff;
}
.cid-t3Ifa6hkSq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t3Ifa6hkSq .mbr-section-subtitle {
  color: #232323;
}
.cid-t3Ifa6hkSq H2 {
  color: #25aab2;
}
.cid-t3IjffwUIQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3IjffwUIQ .mbr-text {
  color: #232323;
}
.cid-t3IjffwUIQ h4 {
  text-align: center;
}
.cid-t3IjffwUIQ p {
  text-align: center;
}
.cid-t3IjffwUIQ .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-t3IfmJcJ4Q {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t3IfmJcJ4Q .image-block {
  margin: auto;
}
.cid-t3IfmJcJ4Q figcaption {
  position: relative;
}
.cid-t3IfmJcJ4Q figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t3IfmJcJ4Q .image-block {
    width: 100% !important;
  }
}
.cid-t3CVKjaW1N {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3CVKjaW1N .mbr-section-subtitle {
  color: #000000;
}
.cid-t3CVKjaW1N H2 {
  color: #25aab2;
}
.cid-t3CVLW6Ddx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t3CVLW6Ddx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t3CVLW6Ddx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3CVLW6Ddx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t3CVLW6Ddx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t3CVLW6Ddx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t3CVLW6Ddx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t3CVLW6Ddx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-t3CVLW6Ddx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t3CVLW6Ddx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t3CVWCrFg1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-t3CVWCrFg1 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-t3CVWCrFg1 .mbr-author-name {
  font-weight: bold;
}
.cid-t3CVWCrFg1 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-t3CVWCrFg1 .mbr-figure,
  .cid-t3CVWCrFg1 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-t3CVWCrFg1 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-t3JhqrRi4B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/hecterra-top-two-1-1900x396.jpg");
}
.cid-t3JhqrRi4B .btn {
  margin: 0 0 .5rem 0;
}
.cid-utUBIqW9PZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBIqW9PZ .form-control,
.cid-utUBIqW9PZ .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBIqW9PZ .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBIqW9PZ textarea.form-control {
  min-height: 188px;
}
.cid-utUBIqW9PZ .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBIqW9PZ .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8PclmAXAp {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-t8PclmAXAp .mbr-text,
.cid-t8PclmAXAp blockquote {
  color: #767676;
}
.cid-t8PclmAXAp .mbr-text P {
  text-align: left;
}
.cid-t8PclmAXAp .mbr-text {
  color: #ffffff;
}
.cid-t8PcTK1sF6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8PcTK1sF6 .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-t8PcTK1sF6 .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-t8PcTK1sF6 .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-t8PcTK1sF6 .mbr-text {
  color: #ffffff;
}
.cid-t8PcTK1sF6 .card {
  padding-bottom: 1.5rem;
}
.cid-t8Pdsq1rkF {
  background: #b2ccd2;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #ffffff, #b2ccd2);
}
.cid-t8Pdsq1rkF .image-block {
  margin: auto;
}
.cid-t8Pdsq1rkF figcaption {
  position: relative;
}
.cid-t8Pdsq1rkF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8Pdsq1rkF .image-block {
    width: 100% !important;
  }
}
.cid-t8Pe5ldt3f {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t8Pe5ldt3f .mbr-text {
  color: #000000;
}
.cid-t8PSGf1ACO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t8PSGf1ACO .mbr-section-subtitle {
  color: #767676;
}
.cid-t8PSF03y6K {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t8PSF03y6K h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t8PSF03y6K p {
  color: #767676;
  text-align: left;
}
.cid-t8PSF03y6K .card-box {
  padding-top: 2rem;
}
.cid-t8PSF03y6K .card-wrapper {
  height: 100%;
}
.cid-t8PSF03y6K .card-title {
  text-align: center;
}
.cid-t8PSF03y6K P {
  color: #000000;
  text-align: center;
}
.cid-t8PWJRqbDY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #073b4c;
}
.cid-t8PWJRqbDY .mbr-text,
.cid-t8PWJRqbDY blockquote {
  color: #767676;
}
.cid-t8PWJRqbDY .mbr-text {
  color: #ffffff;
}
.cid-t8PWJRqbDY .mbr-text P {
  text-align: center;
}
.cid-utUzgYwus2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzgYwus2 .form-control,
.cid-utUzgYwus2 .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzgYwus2 .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzgYwus2 textarea.form-control {
  min-height: 188px;
}
.cid-utUzgYwus2 .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzgYwus2 .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teXDV1LT7N {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-teXDV1LT7N .mbr-text,
.cid-teXDV1LT7N blockquote {
  color: #767676;
}
.cid-teXDV1LT7N .mbr-text P {
  text-align: left;
}
.cid-teXDV1LT7N .mbr-text {
  color: #ffffff;
}
.cid-teXDV20snp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ic-company-wave-gray.svg");
}
.cid-teXDV20snp DIV {
  color: #232323;
}
.cid-teXDV20snp SPAN {
  color: #232323;
}
.cid-teXDV20snp .mbr-section-subtitle {
  color: #232323;
}
.cid-teXDV2H2WJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-teXDV2H2WJ .mbr-text,
.cid-teXDV2H2WJ blockquote {
  color: #767676;
}
.cid-teXDV2H2WJ .mbr-text I {
  color: #232323;
}
.cid-teXDV2H2WJ .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-teXDV2H2WJ .mbr-text DIV {
  text-align: left;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thinlV1Kcy {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-thinlV1Kcy .mbr-text,
.cid-thinlV1Kcy blockquote {
  color: #767676;
}
.cid-thinlV1Kcy .mbr-text P {
  text-align: left;
}
.cid-thinlV1Kcy .mbr-text {
  color: #ffffff;
}
.cid-thiog8CxCj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner-skzi-nkm-1900x646.jpg");
}
.cid-thiog8CxCj .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-thiog8CxCj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-thiog8CxCj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-thiog8CxCj .mbr-text {
    text-align: center;
  }
}
.cid-thinlVvQnQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thinlVvQnQ .mbr-text {
  color: #000000;
}
.cid-thinlWib3T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thinlWib3T .mbr-text {
  color: #000000;
}
.cid-thinlWib3T .mbr-text P {
  text-align: left;
}
.cid-thinlWy1nD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thinlWy1nD .mbr-text {
  color: #000000;
}
.cid-tpVbDmw5ge {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-tpVbDmw5ge .form-control,
.cid-tpVbDmw5ge .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-tpVbDmw5ge .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-tpVbDmw5ge textarea.form-control {
  min-height: 188px;
}
.cid-tpVbDmw5ge .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-tpVbDmw5ge .content-container {
    padding-right: 5rem;
  }
}
.cid-thinlZhTjQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-thinlZhTjQ .mbr-section-btn > * {
  margin: 0;
}
.cid-thinlZhTjQ h4 {
  font-weight: 500;
}
.cid-thinlZhTjQ p {
  color: #232323;
}
.cid-thinlZhTjQ .aside-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-thinlZhTjQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-thinlZhTjQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-thinlZhTjQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-thinlZhTjQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-thinlZhTjQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-thinlZhTjQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-thinlZhTjQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-thinlZhTjQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-thinlZhTjQ .cost {
  text-decoration: line-through;
  color: #767676;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thkFVuUqSK {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-thkFVuUqSK .mbr-text,
.cid-thkFVuUqSK blockquote {
  color: #767676;
}
.cid-thkFVuUqSK .mbr-text P {
  text-align: left;
}
.cid-thkFVuUqSK .mbr-text {
  color: #ffffff;
}
.cid-thkFVv70vr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner-taho-front-1900x901.jpg");
}
.cid-thkKPBoZUc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thkKPBoZUc .mbr-text {
  color: #000000;
}
.cid-thkLfQzXzn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thkLfQzXzn .mbr-text {
  color: #000000;
}
.cid-thkLBw4uNy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thkLBw4uNy .mbr-text {
  color: #000000;
}
.cid-uu6FoHwpCv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uu6FoHwpCv .mbr-section-subtitle {
  color: #767676;
}
.cid-uu6FoHwpCv .container-table {
  margin: 0 auto;
}
.cid-uu6FoHwpCv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uu6FoHwpCv .dataTables_wrapper {
  display: block;
}
.cid-uu6FoHwpCv .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uu6FoHwpCv .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uu6FoHwpCv table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #c1c1c1;
  margin-bottom: 0;
}
.cid-uu6FoHwpCv table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uu6FoHwpCv table th:hover {
  background: #c1c1c1;
  color: #000000;
}
.cid-uu6FoHwpCv table td {
  border-top: 1px solid #c1c1c1;
}
.cid-uu6FoHwpCv table.table {
  background: #efefef;
}
.cid-uu6FoHwpCv .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uu6FoHwpCv .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uu6FoHwpCv .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uu6FoHwpCv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uu6FoHwpCv .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uu6FoHwpCv .dataTables_filter {
    text-align: center;
  }
  .cid-uu6FoHwpCv .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uu6FoHwpCv .head-item {
  text-align: center;
}
.cid-uu6FoHwpCv .body-item {
  text-align: center;
}
.cid-uOuTvaZFX7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-uOuTvaZFX7 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uOuTvaZFX7 .section-text {
  padding: 2rem 0;
}
.cid-uOuTvaZFX7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uOuTvaZFX7 .inner-container {
    width: 100% !important;
  }
}
.cid-tT1e6yyt7e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tT1e6yyt7e .mbr-text {
  color: #000000;
}
.cid-tT1ebPxycX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mt-ic-pattern-telegram-1920x500.jpg");
}
.cid-tT1ebPxycX .mbr-section-btn > * {
  margin: 0;
}
.cid-tT1ebPxycX h4 {
  font-weight: 500;
}
.cid-tT1ebPxycX p {
  color: #232323;
}
.cid-tT1ebPxycX .aside-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tT1ebPxycX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tT1ebPxycX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tT1ebPxycX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tT1ebPxycX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tT1ebPxycX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tT1ebPxycX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tT1ebPxycX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tT1ebPxycX .card-img span {
    font-size: 40px !important;
  }
}
.cid-tT1ebPxycX .cost {
  text-decoration: line-through;
  color: #767676;
}
.cid-tT1ebPxycX H2 {
  color: #000000;
}
.cid-tT1ebPxycX .text1 {
  color: #000000;
}
.cid-tT1ebPxycX .text2,
.cid-tT1ebPxycX .mbr-section-btn {
  color: #000000;
}
.cid-tRCWMXud9c {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRCWMXud9c .mbr-section-subtitle {
  color: #000000;
}
.cid-tT1egsCIJW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT1egsCIJW .mbr-text {
  color: #767676;
}
.cid-tT1egsCIJW h4 {
  text-align: center;
}
.cid-tT1egsCIJW p {
  text-align: center;
}
.cid-tT1egsCIJW .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tvW1lSdDmT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvW1lSdDmT .mbr-section-subtitle {
  color: #000000;
}
.cid-tvW1lSdDmT .formoid {
  margin: auto;
}
.cid-tvW1lSdDmT .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-tvW1lSdDmT .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-tvW1lSdDmT input[type="email"] {
  border-radius: 100px !important;
}
.cid-tvW1lSdDmT a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-tvW1lSdDmT a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-tvW1lSdDmT .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tvW1lSdDmT .form-group,
  .cid-tvW1lSdDmT .input-group-btn,
  .cid-tvW1lSdDmT .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-tvW1lSdDmT .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-tYoWGzb7Ts {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tYoWGzb7Ts .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tYoWGzb7Ts .section-text {
  padding: 2rem 0;
}
.cid-tYoWGzb7Ts .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tYoWGzb7Ts .inner-container {
    width: 100% !important;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thnWpwu30A {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-thnWpwu30A .mbr-text,
.cid-thnWpwu30A blockquote {
  color: #767676;
}
.cid-thnWpwu30A .mbr-text P {
  text-align: left;
}
.cid-thnWpwu30A .mbr-text {
  color: #ffffff;
}
.cid-thnWpwGMGi {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/terminals-rent-top-1-1920x1281.jpg");
}
.cid-thnWpwGMGi .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-thnWpwGMGi .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-thnWpwGMGi .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-thnWpwGMGi .mbr-text {
  color: #ffffff;
}
.cid-thnWpwGMGi .card {
  padding-bottom: 1.5rem;
}
.cid-tho53PY9nB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tho53PY9nB h2 {
  text-align: center;
}
.cid-tho53PY9nB h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tho53PY9nB p {
  color: #767676;
}
.cid-tho53PY9nB img {
  object-fit: cover;
}
.cid-tho53PY9nB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tho53PY9nB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tho53PY9nB .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tho53PY9nB .mbr-section-subtitle {
  color: #000000;
}
.cid-tho53PY9nB .card-title {
  font-weight: 500;
}
.cid-tho53PY9nB .card-img {
  text-align: inherit;
}
.cid-tho53PY9nB .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tho53PY9nB .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tho53PY9nB .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tho53PY9nB .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tho53PY9nB .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tho53PY9nB .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-tho53PY9nB .mbr-section-text {
  color: #000000;
}
.cid-tvabqiIG8X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partners-card-back-1900x422.jpg");
}
.cid-tmNOEu5fzq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-tmNOEu5fzq .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  font-weight: 300;
}
.cid-tmNOEu5fzq .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
  color: #073b4c;
}
@media (max-width: 767px) {
  .cid-tmNOEu5fzq .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-tmNOEu5fzq .separline {
  position: relative;
}
.cid-tmNOEu5fzq .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tmNOEu5fzq .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-tmNOEu5fzq .mbr-step-title {
  color: #073b4c;
}
.cid-tnvGgSzRPm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tnvGgSzRPm .mbr-section-subtitle {
  color: #232323;
}
.cid-tnvGgSzRPm .btn {
  margin: 0 0 .5rem 0;
}
.cid-utUB8iiKid {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUB8iiKid .form-control,
.cid-utUB8iiKid .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUB8iiKid .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUB8iiKid textarea.form-control {
  min-height: 188px;
}
.cid-utUB8iiKid .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUB8iiKid .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thABQujgN3 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #97bfcc;
}
.cid-thABQujgN3 .card-img {
  background-color: #fff;
}
.cid-thABQujgN3 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQujgN3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQujgN3 p {
  text-align: left;
}
.cid-thABQujgN3 .mbr-text {
  color: #767676;
}
.cid-thABQujgN3 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQujgN3 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQujgN3 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQv6JHJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #bafca6;
}
.cid-thABQv6JHJ .card-img {
  background-color: #fff;
}
.cid-thABQv6JHJ .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQv6JHJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQv6JHJ p {
  text-align: left;
}
.cid-thABQv6JHJ .mbr-text {
  color: #767676;
}
.cid-thABQv6JHJ .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQv6JHJ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQv6JHJ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQvN1Uf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-thABQvN1Uf .card-img {
  background-color: #fff;
}
.cid-thABQvN1Uf .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQvN1Uf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQvN1Uf p {
  text-align: left;
}
.cid-thABQvN1Uf .mbr-text {
  color: #767676;
}
.cid-thABQvN1Uf .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQvN1Uf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQvN1Uf .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQwvte7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7d691;
}
.cid-thABQwvte7 .card-img {
  background-color: #fff;
}
.cid-thABQwvte7 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQwvte7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQwvte7 p {
  text-align: left;
}
.cid-thABQwvte7 .mbr-text {
  color: #767676;
}
.cid-thABQwvte7 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQwvte7 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQwvte7 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQx89tk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #465052;
}
.cid-thABQx89tk .card-img {
  background-color: #fff;
}
.cid-thABQx89tk .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQx89tk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQx89tk p {
  text-align: left;
}
.cid-thABQx89tk .mbr-text {
  color: #767676;
}
.cid-thABQx89tk .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQx89tk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQx89tk .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQxK5zM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-thABQxK5zM .card-img {
  background-color: #fff;
}
.cid-thABQxK5zM .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-thABQxK5zM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-thABQxK5zM p {
  text-align: left;
}
.cid-thABQxK5zM .mbr-text {
  color: #767676;
}
.cid-thABQxK5zM .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-thABQxK5zM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-thABQxK5zM .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thABQyhV4f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-thABQyhV4f .mbr-text,
.cid-thABQyhV4f blockquote {
  color: #767676;
}
.cid-thABQyhV4f .mbr-text {
  color: #149dcc;
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT37xNaW9G {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tT37xNaW9G .mbr-text,
.cid-tT37xNaW9G blockquote {
  color: #767676;
}
.cid-tT37xNaW9G .mbr-text P {
  text-align: left;
}
.cid-tT37xNaW9G .mbr-text {
  color: #ffffff;
}
.cid-tnTxIIBKed {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/kompleksnoe-predlozhenie-banner-top-1920x565.jpg");
}
.cid-tnP6BMxwEk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnP6BMxwEk .mbr-section-subtitle {
  color: #000000;
}
.cid-tnP6kJfcWd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnP6kJfcWd .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tnP6kJfcWd .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tnP6kJfcWd .mbr-text {
  color: #000000;
}
.cid-tnP6uJsosW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tnP6uJsosW .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tnP6uJsosW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tnP6uJsosW .media-container-row {
    flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
  }
  .cid-tnP6uJsosW .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tnP6uJsosW .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tnP6xLafgq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnP6xLafgq .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tnP6xLafgq .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tnP6xLafgq .mbr-text {
  color: #000000;
}
.cid-utUKajhlNM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUKajhlNM .form-control,
.cid-utUKajhlNM .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUKajhlNM .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUKajhlNM textarea.form-control {
  min-height: 188px;
}
.cid-utUKajhlNM .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUKajhlNM .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpTz6BosPO {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/era-banner-top-1920x626.jpg");
}
.cid-tpTzHnvZ9r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpTzHnvZ9r .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
}
.cid-tpTzHnvZ9r .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tpTzHnvZ9r .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tpTzHnvZ9r .mbr-figure,
  .cid-tpTzHnvZ9r img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tpTzHnvZ9r .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tpTzHnvZ9r .mbr-author-desc {
  color: #000000;
}
.cid-unzCIl5WK7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/aoglonass-less-banner-1920x500.jpg");
}
.cid-unzCIl5WK7 P {
  color: #767676;
}
.cid-unzCIl5WK7 .mbr-text,
.cid-unzCIl5WK7 .mbr-section-btn {
  color: #ffffff;
}
.cid-unzCIl5WK7 H1 {
  color: #ffffff;
}
.cid-tpUpCfwvCv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tpUpCfwvCv .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tpUpCfwvCv .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-tpUpCfwvCv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tpUpCfwvCv .inner-container {
    width: 100% !important;
  }
}
.cid-tSsrXhWpeF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/era-banner-docs-1920x630.jpg");
}
.cid-tSsrXhWpeF P {
  color: #767676;
}
.cid-tSsrXhWpeF .mbr-text,
.cid-tSsrXhWpeF .mbr-section-btn {
  color: #000000;
}
.cid-tSsrXhWpeF H1 {
  color: #073b4c;
}
.cid-tpUmrbTbIg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpUmrbTbIg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-tpUmrbTbIg p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-tpUmrbTbIg .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-tpUmrbTbIg .mbr-section-btn a {
  margin: 0;
}
.cid-tpUmrbTbIg .mbr-text {
  color: #767676;
}
.cid-tpUmrbTbIg .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tpUmrbTbIg .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-tpUmrbTbIg H2 {
  text-align: center;
  color: #073b4c;
}
.cid-tpUmrbTbIg .card-title {
  text-align: center;
}
.cid-tpUmrbTbIg .mbr-text,
.cid-tpUmrbTbIg .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tpUmrbTbIg .mbr-section-subtitle {
  text-align: center;
}
.cid-tpUq3CdtIQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpUq3CdtIQ .mbr-section-subtitle {
  color: #000000;
}
.cid-tpUq3CdtIQ H2 {
  color: #073b4c;
}
.cid-tpTFFywKjO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTFFywKjO .mbr-text {
  color: #000000;
}
.cid-tpTHg3tW2n {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTHg3tW2n .mbr-text {
  color: #000000;
}
.cid-tpTKgybHAJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTKgybHAJ .mbr-text {
  color: #000000;
}
.cid-tpTLFl805F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTLFl805F .mbr-text {
  color: #000000;
}
.cid-tpTQ6vaOPa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTQ6vaOPa .mbr-text {
  color: #000000;
}
.cid-tpTXxQKSj3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpTXxQKSj3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tpTXxQKSj3 H2 {
  color: #073b4c;
}
.cid-tpTXsMxFpL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpTXsMxFpL .counter-container {
  color: #767676;
}
.cid-tpTXsMxFpL .counter-container ul {
  margin-bottom: 0;
}
.cid-tpTXsMxFpL .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tpTXsMxFpL .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #073b4c;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tpTXsMxFpL .mbr-text {
  color: #000000;
}
.cid-utUE5GnjPL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUE5GnjPL .form-control,
.cid-utUE5GnjPL .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUE5GnjPL .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUE5GnjPL textarea.form-control {
  min-height: 188px;
}
.cid-utUE5GnjPL .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUE5GnjPL .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttVJHVTlqe {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/vehicle-monitoring-top-banner-1920x414.jpg");
}
.cid-ttVJHWJ1Ax {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ttVJHWJ1Ax h3 {
  font-weight: 300;
}
.cid-ttVJHWJ1Ax .card-img {
  width: initial;
}
.cid-ttVJHWJ1Ax .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-ttVJHWJ1Ax .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-ttVJHWJ1Ax .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ttVJHWJ1Ax .mbr-section-subtitle {
  color: #767676;
}
.cid-ttVJHWJ1Ax .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ttVJHWJ1Ax .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ttVJHWJ1Ax .mbr-al-i-c {
  align-items: center;
}
.cid-ttVJHWJ1Ax .card-title {
  text-align: center;
}
.cid-ttVJHXg7TC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gray-pattern-1900x737.jpg");
}
.cid-ttVJHXg7TC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ttVJHXg7TC h4 {
  text-align: center;
}
.cid-ttVJHXg7TC p {
  text-align: center;
}
.cid-ttVJHXg7TC .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-ttVJHXP5bP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-ttVJHXP5bP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttVJHXP5bP H2 {
  color: #ffffff;
}
.cid-ttVJHY2sXv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-ttVJHY2sXv .card-box {
  padding: 0 2rem;
}
.cid-ttVJHY2sXv .mbr-section-btn {
  padding-top: 1rem;
}
.cid-ttVJHY2sXv .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-ttVJHY2sXv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-ttVJHY2sXv p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-ttVJHY2sXv .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ttVJHY2sXv .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-ttVJHY2sXv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-ttVJHY2sXv .card-title {
  text-align: center;
}
.cid-ttVJHYsyBb {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-ttVJHYsyBb .btn {
  margin: 0 0 .5rem 0;
}
.cid-ttVJHYsyBb H2 {
  text-align: right;
  color: #ffffff;
}
.cid-utUz6wJp2q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUz6wJp2q .form-control,
.cid-utUz6wJp2q .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUz6wJp2q .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUz6wJp2q textarea.form-control {
  min-height: 188px;
}
.cid-utUz6wJp2q .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUz6wJp2q .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu2F1Ev7Z9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu2F1Ev7Z9 .mbr-text,
.cid-tu2F1Ev7Z9 blockquote {
  color: #767676;
}
.cid-tu2F1Ev7Z9 .mbr-text P {
  text-align: left;
}
.cid-tu2F1Ev7Z9 .mbr-text {
  color: #ffffff;
}
.cid-tu1GWXHEnO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu1GWXHEnO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu1GWXHEnO .row {
  flex-direction: row-reverse;
}
.cid-tu1GWXHEnO img {
  width: 100%;
}
.cid-tu1Gk0P6UF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tu1Gk0P6UF .mbr-section-subtitle {
  color: #000000;
}
.cid-tuuOw3PEUW {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuOw3PEUW .mbr-text {
  color: #000000;
}
.cid-tuuOw3PEUW h4 {
  text-align: center;
}
.cid-tuuOw3PEUW p {
  text-align: center;
}
.cid-tuuOw3PEUW .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tuuOxdqQer {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuuOxdqQer .mbr-text {
  color: #000000;
}
.cid-tuuOxdqQer h4 {
  text-align: center;
}
.cid-tuuOxdqQer p {
  text-align: center;
}
.cid-tuuOxdqQer .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-utUyV537dP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyV537dP .form-control,
.cid-utUyV537dP .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyV537dP .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyV537dP textarea.form-control {
  min-height: 188px;
}
.cid-utUyV537dP .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyV537dP .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu2HzljUZk {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu2HzljUZk .mbr-text,
.cid-tu2HzljUZk blockquote {
  color: #767676;
}
.cid-tu2HzljUZk .mbr-text P {
  text-align: left;
}
.cid-tu2HzljUZk .mbr-text {
  color: #ffffff;
}
.cid-tu2Hzm3j7w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu2Hzm3j7w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu2Hzm3j7w .row {
  flex-direction: row-reverse;
}
.cid-tu2Hzm3j7w img {
  width: 100%;
}
.cid-tu2HzlON5a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tu2HzlON5a .mbr-section-subtitle {
  color: #000000;
}
.cid-tuuQEtOcl7 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuQEtOcl7 .mbr-text {
  color: #000000;
}
.cid-tuuQEtOcl7 h4 {
  text-align: center;
}
.cid-tuuQEtOcl7 p {
  text-align: center;
}
.cid-tuuQEtOcl7 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tuuQFRm8u3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuQFRm8u3 .mbr-text {
  color: #000000;
}
.cid-tuuQFRm8u3 h4 {
  text-align: center;
}
.cid-tuuQFRm8u3 p {
  text-align: center;
}
.cid-tuuQFRm8u3 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-umPrN1V2FS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/traffic-monitoring-solid-1920x1399.jpg");
}
.cid-umPrN1V2FS P {
  color: #767676;
}
.cid-umPrN1V2FS .mbr-text,
.cid-umPrN1V2FS .mbr-section-btn {
  color: #000000;
}
.cid-utUyXzwMes {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyXzwMes .form-control,
.cid-utUyXzwMes .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyXzwMes .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyXzwMes textarea.form-control {
  min-height: 188px;
}
.cid-utUyXzwMes .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyXzwMes .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu31PYHhLq {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu31PYHhLq .mbr-text,
.cid-tu31PYHhLq blockquote {
  color: #767676;
}
.cid-tu31PYHhLq .mbr-text P {
  text-align: left;
}
.cid-tu31PYHhLq .mbr-text {
  color: #ffffff;
}
.cid-tu31PZoEbV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu31PZoEbV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu31PZoEbV .row {
  flex-direction: row-reverse;
}
.cid-tu31PZoEbV img {
  width: 100%;
}
.cid-tu31PZ9FqH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tu31PZ9FqH .mbr-section-subtitle {
  color: #000000;
}
.cid-tuuSNEmk3V {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuSNEmk3V .mbr-text {
  color: #000000;
}
.cid-tuuSNEmk3V h4 {
  text-align: center;
}
.cid-tuuSNEmk3V p {
  text-align: center;
}
.cid-tuuSNEmk3V .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tuuSOBx6w8 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuuSOBx6w8 .mbr-text {
  color: #000000;
}
.cid-tuuSOBx6w8 h4 {
  text-align: center;
}
.cid-tuuSOBx6w8 p {
  text-align: center;
}
.cid-tuuSOBx6w8 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-utUyZLlyMG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUyZLlyMG .form-control,
.cid-utUyZLlyMG .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUyZLlyMG .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUyZLlyMG textarea.form-control {
  min-height: 188px;
}
.cid-utUyZLlyMG .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUyZLlyMG .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu36djo9Vy {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu36djo9Vy .mbr-text,
.cid-tu36djo9Vy blockquote {
  color: #767676;
}
.cid-tu36djo9Vy .mbr-text P {
  text-align: left;
}
.cid-tu36djo9Vy .mbr-text {
  color: #ffffff;
}
.cid-tu36djU6mq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu36djU6mq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu36djU6mq .row {
  flex-direction: row-reverse;
}
.cid-tu36djU6mq img {
  width: 100%;
}
.cid-tu36djGm0K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tu36djGm0K .mbr-section-subtitle {
  color: #000000;
}
.cid-tuuTIvJmgq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuTIvJmgq .mbr-text {
  color: #000000;
}
.cid-tuuTIvJmgq h4 {
  text-align: center;
}
.cid-tuuTIvJmgq p {
  text-align: center;
}
.cid-tuuTIvJmgq .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tuuTJsKl9H {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuuTJsKl9H .mbr-text {
  color: #000000;
}
.cid-tuuTJsKl9H h4 {
  text-align: center;
}
.cid-tuuTJsKl9H p {
  text-align: center;
}
.cid-tuuTJsKl9H .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-utUz1Qh2da {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUz1Qh2da .form-control,
.cid-utUz1Qh2da .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUz1Qh2da .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUz1Qh2da textarea.form-control {
  min-height: 188px;
}
.cid-utUz1Qh2da .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUz1Qh2da .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu3mu1A6As {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tu3mu1A6As .mbr-text,
.cid-tu3mu1A6As blockquote {
  color: #767676;
}
.cid-tu3mu1A6As .mbr-text P {
  text-align: left;
}
.cid-tu3mu1A6As .mbr-text {
  color: #ffffff;
}
.cid-tu3mu26Faq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu3mu26Faq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu3mu26Faq .row {
  flex-direction: row-reverse;
}
.cid-tu3mu26Faq img {
  width: 100%;
}
.cid-tu3mu1SqAQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tu3mu1SqAQ .mbr-section-subtitle {
  color: #000000;
}
.cid-tuuULmCpTa {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuuULmCpTa .mbr-text {
  color: #000000;
}
.cid-tuuULmCpTa h4 {
  text-align: center;
}
.cid-tuuULmCpTa p {
  text-align: center;
}
.cid-tuuULmCpTa .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tuuUNWJDGy {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuuUNWJDGy .mbr-text {
  color: #000000;
}
.cid-tuuUNWJDGy h4 {
  text-align: center;
}
.cid-tuuUNWJDGy p {
  text-align: center;
}
.cid-tuuUNWJDGy .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-utUz4evrwm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUz4evrwm .form-control,
.cid-utUz4evrwm .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUz4evrwm .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUz4evrwm textarea.form-control {
  min-height: 188px;
}
.cid-utUz4evrwm .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUz4evrwm .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ty6DqZ0CDy {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/avtopilot-top-banner.webp");
}
.cid-ty6DqZ0CDy .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-ty6DqZ0CDy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ty6DqZ0CDy .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ty6DqZ0CDy .mbr-text {
    text-align: center;
  }
}
.cid-tJeAaNXlCm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJeAaNXlCm .mbr-text {
  color: #000000;
}
.cid-ty6DADKaAg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ty6DADKaAg .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-ty6DADKaAg .mbr-content-text {
  color: #000000;
  margin-bottom: 0;
}
.cid-ty6DADKaAg .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-ty6DADKaAg .img-text {
  width: 54px;
  height: 54px;
  font-size: 27px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ty6DADKaAg .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-ty6DADKaAg .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-ty6DADKaAg .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-ty6DADKaAg .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-ty6DADKaAg .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-ty6DADKaAg .media-block {
    padding-left: 2rem;
  }
}
.cid-ty6DADKaAg .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-ty6DADKaAg .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-ty6DADKaAg .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ty6DADKaAg .mbr-section-title {
  color: #0a6101;
}
.cid-ty6DIiUIv6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ty6DIiUIv6 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-ty6DIiUIv6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ty6DIiUIv6 .media-container-row {
    flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
  }
  .cid-ty6DIiUIv6 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-ty6DIiUIv6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ty6DG8RFoA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ty6DG8RFoA .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-ty6DG8RFoA .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-ty6DG8RFoA .mbr-text {
  color: #000000;
}
.cid-ty6Gr1TM3e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ty6Gr1TM3e .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-ty6Gr1TM3e .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ty6Gr1TM3e .media-container-row {
    flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
  }
  .cid-ty6Gr1TM3e .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-ty6Gr1TM3e .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ty6GrFGHj0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ty6GrFGHj0 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-ty6GrFGHj0 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-ty6GrFGHj0 .mbr-text {
  color: #000000;
}
.cid-ty6HdFFM0x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ty6HdFFM0x .mbr-text {
  color: #000000;
}
.cid-ty6HdFFM0x h4 {
  text-align: center;
}
.cid-ty6HdFFM0x p {
  text-align: center;
}
.cid-ty6HdFFM0x .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-ty6DNG9Mjn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ty6DNG9Mjn .line {
  background-color: #0a6101;
  color: #0a6101;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ty6DNG9Mjn .section-text {
  padding: 2rem 0;
}
.cid-ty6DNG9Mjn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ty6DNG9Mjn .inner-container {
    width: 100% !important;
  }
}
.cid-ty6IeqJcNE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ty6IeqJcNE .mbr-text {
  color: #000000;
}
.cid-ty6IeqJcNE h4 {
  text-align: center;
}
.cid-ty6IeqJcNE p {
  text-align: center;
}
.cid-ty6IeqJcNE .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-utUBKwAUYS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBKwAUYS .form-control,
.cid-utUBKwAUYS .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBKwAUYS .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBKwAUYS textarea.form-control {
  min-height: 188px;
}
.cid-utUBKwAUYS .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBKwAUYS .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tPrT2R21OO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPrT2R21OO nav.navbar {
  position: fixed;
}
.cid-tPrT2R21OO .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-tPrT2R21OO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPrT2R21OO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPrT2R21OO .dropdown-item:hover,
.cid-tPrT2R21OO .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tPrT2R21OO .dropdown-item:hover span {
  color: white;
}
.cid-tPrT2R21OO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPrT2R21OO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPrT2R21OO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPrT2R21OO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPrT2R21OO .nav-link {
  position: relative;
}
.cid-tPrT2R21OO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tPrT2R21OO .container {
    flex-wrap: nowrap;
  }
}
.cid-tPrT2R21OO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPrT2R21OO .dropdown-menu,
.cid-tPrT2R21OO .navbar.opened {
  background: #232323 !important;
}
.cid-tPrT2R21OO .nav-item:focus,
.cid-tPrT2R21OO .nav-link:focus {
  outline: none;
}
.cid-tPrT2R21OO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPrT2R21OO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPrT2R21OO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPrT2R21OO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPrT2R21OO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPrT2R21OO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPrT2R21OO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tPrT2R21OO .navbar.opened {
  transition: all 0.3s;
}
.cid-tPrT2R21OO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPrT2R21OO .navbar .navbar-logo img {
  width: auto;
}
.cid-tPrT2R21OO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPrT2R21OO .navbar.collapsed {
  justify-content: center;
}
.cid-tPrT2R21OO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPrT2R21OO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPrT2R21OO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tPrT2R21OO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPrT2R21OO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPrT2R21OO .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-tPrT2R21OO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPrT2R21OO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPrT2R21OO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPrT2R21OO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPrT2R21OO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPrT2R21OO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPrT2R21OO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPrT2R21OO .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-tPrT2R21OO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPrT2R21OO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPrT2R21OO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPrT2R21OO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPrT2R21OO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPrT2R21OO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPrT2R21OO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPrT2R21OO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPrT2R21OO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPrT2R21OO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPrT2R21OO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPrT2R21OO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPrT2R21OO .dropdown-item.active,
.cid-tPrT2R21OO .dropdown-item:active {
  background-color: transparent;
}
.cid-tPrT2R21OO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPrT2R21OO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPrT2R21OO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPrT2R21OO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tPrT2R21OO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPrT2R21OO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPrT2R21OO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPrT2R21OO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPrT2R21OO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPrT2R21OO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tPrT2R21OO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPrT2R21OO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPrT2R21OO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPrT2R21OO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPrT2R21OO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPrT2R21OO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPrT2R21OO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPrT2R21OO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPrT2R21OO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPrT2R21OO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPrT2R21OO .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-tPrT2R21OO .navbar {
    height: 70px;
  }
  .cid-tPrT2R21OO .navbar.opened {
    height: auto;
  }
  .cid-tPrT2R21OO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT36Ptf8Tm {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tT36Ptf8Tm .mbr-text,
.cid-tT36Ptf8Tm blockquote {
  color: #767676;
}
.cid-tT36Ptf8Tm .mbr-text P {
  text-align: left;
}
.cid-tT36Ptf8Tm .mbr-text {
  color: #ffffff;
}
.cid-tPrT2LoYeE {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/banner-taho-hand-1900x900.jpg");
}
.cid-tPrT2LoYeE .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPrT2LoYeE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tPrT2LoYeE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tPrT2LoYeE .mbr-text {
    text-align: center;
  }
}
.cid-tPrURaZErC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPrURaZErC .mbr-section-subtitle {
  color: #767676;
}
.cid-tPrUH8z8ye {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tPrUH8z8ye .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tPrUH8z8ye .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tPrUH8z8ye .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tPs3rFKpXC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tPs3rFKpXC .mbr-section-text {
  color: #000000;
}
.cid-tPs3rFKpXC .mbr-section-subtitle {
  color: #000000;
}
.cid-tPs3rFKpXC .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tPs3rFKpXC .mbr-iconfont {
  font-size: 48px;
}
.cid-tPs3rFKpXC .card-img {
  margin-bottom: 1.5rem;
}
.cid-tPs3rFKpXC .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tPs3rFKpXC .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-tPs3rFKpXC .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tPs3rFKpXC .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #000000;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #000000;
}
.cid-tPs3rFKpXC .nav-tabs .nav-link:hover {
  background: #0f7699;
}
.cid-tPs3rFKpXC .nav-tabs .nav-link.active {
  color: #ffffff;
  font-style: normal;
  border: 2px solid #0f7699;
  background: #0f7699;
}
.cid-tPs3rFKpXC .nav-tabs .nav-link.active:hover {
  border: 2px solid #0f7699;
}
.cid-tPrT2MlK2b {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #215668;
}
.cid-tPrT2MlK2b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPrT2MlK2b H2 {
  color: #ffffff;
}
.cid-tPrT2My8y5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #215668;
}
.cid-tPrT2My8y5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tPrT2My8y5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPrT2My8y5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tPrT2My8y5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tPrT2My8y5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tPrT2My8y5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tPrT2My8y5 .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tPrT2My8y5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tPrT2My8y5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tPrT2MWE1B {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPrT2MWE1B .mbr-section-subtitle {
  color: #767676;
}
.cid-tPrT2N9bUd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPrT2N9bUd .mbr-text {
  color: #767676;
}
.cid-tPrT2N9bUd h4 {
  text-align: center;
}
.cid-tPrT2N9bUd p {
  text-align: center;
}
.cid-tPrT2N9bUd .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tPthDTapB2 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tPthDTapB2 .image-block {
  margin: auto;
}
.cid-tPthDTapB2 figcaption {
  position: relative;
}
.cid-tPthDTapB2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPthDTapB2 .image-block {
    width: 100% !important;
  }
}
.cid-tPtyG5uFzw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tPtyG5uFzw .mbr-section-subtitle {
  color: #767676;
}
.cid-tPtyG5uFzw .container-table {
  margin: 0 auto;
}
.cid-tPtyG5uFzw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tPtyG5uFzw .dataTables_wrapper {
  display: block;
}
.cid-tPtyG5uFzw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tPtyG5uFzw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tPtyG5uFzw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #0f7699;
  margin-bottom: 0;
}
.cid-tPtyG5uFzw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tPtyG5uFzw table th:hover {
  background: #0f7699;
  color: #ffffff;
}
.cid-tPtyG5uFzw table td {
  border-top: 1px solid #0f7699;
}
.cid-tPtyG5uFzw table.table {
  background: #ffffff;
}
.cid-tPtyG5uFzw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tPtyG5uFzw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tPtyG5uFzw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tPtyG5uFzw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tPtyG5uFzw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tPtyG5uFzw .dataTables_filter {
    text-align: center;
  }
  .cid-tPtyG5uFzw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tPtyG5uFzw .head-item {
  text-align: left;
}
.cid-tPtyG5uFzw .body-item {
  text-align: left;
}
.cid-tPtw0ZpFNY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/cert-background-1920x300.jpg");
}
.cid-tPtw0ZpFNY P {
  color: #767676;
}
.cid-tPtw0ZpFNY .mbr-text,
.cid-tPtw0ZpFNY .mbr-section-btn {
  color: #000000;
}
.cid-tPrT2PDdwW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/wialon-local-header-1900x1267.jpg");
}
@media (min-width: 992px) {
  .cid-tPrT2PDdwW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tPrT2PDdwW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tPrT2PDdwW .mbr-text {
    text-align: center;
  }
}
.cid-utUAVrTAjP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUAVrTAjP .form-control,
.cid-utUAVrTAjP .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUAVrTAjP .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUAVrTAjP textarea.form-control {
  min-height: 188px;
}
.cid-utUAVrTAjP .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUAVrTAjP .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tT251BRsNN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tT251BRsNN nav.navbar {
  position: fixed;
}
.cid-tT251BRsNN .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-tT251BRsNN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tT251BRsNN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT251BRsNN .dropdown-item:hover,
.cid-tT251BRsNN .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tT251BRsNN .dropdown-item:hover span {
  color: white;
}
.cid-tT251BRsNN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT251BRsNN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT251BRsNN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT251BRsNN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT251BRsNN .nav-link {
  position: relative;
}
.cid-tT251BRsNN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tT251BRsNN .container {
    flex-wrap: nowrap;
  }
}
.cid-tT251BRsNN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT251BRsNN .dropdown-menu,
.cid-tT251BRsNN .navbar.opened {
  background: #232323 !important;
}
.cid-tT251BRsNN .nav-item:focus,
.cid-tT251BRsNN .nav-link:focus {
  outline: none;
}
.cid-tT251BRsNN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT251BRsNN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT251BRsNN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT251BRsNN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT251BRsNN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT251BRsNN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT251BRsNN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tT251BRsNN .navbar.opened {
  transition: all 0.3s;
}
.cid-tT251BRsNN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT251BRsNN .navbar .navbar-logo img {
  width: auto;
}
.cid-tT251BRsNN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT251BRsNN .navbar.collapsed {
  justify-content: center;
}
.cid-tT251BRsNN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT251BRsNN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tT251BRsNN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tT251BRsNN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT251BRsNN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT251BRsNN .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-tT251BRsNN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT251BRsNN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT251BRsNN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT251BRsNN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT251BRsNN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT251BRsNN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT251BRsNN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT251BRsNN .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-tT251BRsNN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tT251BRsNN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT251BRsNN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT251BRsNN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tT251BRsNN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT251BRsNN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tT251BRsNN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT251BRsNN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT251BRsNN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT251BRsNN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tT251BRsNN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT251BRsNN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT251BRsNN .dropdown-item.active,
.cid-tT251BRsNN .dropdown-item:active {
  background-color: transparent;
}
.cid-tT251BRsNN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT251BRsNN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT251BRsNN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT251BRsNN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tT251BRsNN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT251BRsNN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT251BRsNN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT251BRsNN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT251BRsNN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT251BRsNN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tT251BRsNN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT251BRsNN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT251BRsNN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT251BRsNN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT251BRsNN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT251BRsNN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT251BRsNN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT251BRsNN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT251BRsNN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tT251BRsNN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT251BRsNN .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-tT251BRsNN .navbar {
    height: 70px;
  }
  .cid-tT251BRsNN .navbar.opened {
    height: auto;
  }
  .cid-tT251BRsNN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT251CgrJ2 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-tT251CgrJ2 .mbr-text,
.cid-tT251CgrJ2 blockquote {
  color: #767676;
}
.cid-tT251CgrJ2 .mbr-text P {
  text-align: left;
}
.cid-tT251CgrJ2 .mbr-text {
  color: #ffffff;
}
.cid-tT2MBR0Ajj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/sensors-tire-trucks-1360x768.jpg");
}
.cid-tT26fUAcmc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT26fUAcmc .mbr-text {
  color: #000000;
}
.cid-tT26fUAcmc h4 {
  text-align: center;
}
.cid-tT26fUAcmc p {
  text-align: center;
}
.cid-tT26fUAcmc .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tT251CVA9G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-tT251CVA9G .mbr-text {
  color: #ffffff;
}
.cid-tT251CVA9G h4 {
  text-align: center;
}
.cid-tT251CVA9G p {
  text-align: center;
}
.cid-tT251CVA9G .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tT251CVA9G .card-title,
.cid-tT251CVA9G .card-img {
  color: #ffffff;
}
.cid-tT2bGt6DRY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT2bGt6DRY .mbr-section-subtitle {
  color: #000000;
}
.cid-tT2bGt6DRY H2 {
  color: #073b4c;
}
.cid-tT2by0Dz1j {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-tT2by0Dz1j .image-block {
  margin: auto;
}
.cid-tT2by0Dz1j .mbr-figure {
  margin: 0 auto;
}
.cid-tT2by0Dz1j figcaption {
  position: relative;
}
.cid-tT2by0Dz1j figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tT2by0Dz1j .image-block {
    width: 100% !important;
  }
}
.cid-tT2A4BqZ20 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tT2A4BqZ20 .mbr-section-subtitle {
  color: #000000;
}
.cid-tT2A4BqZ20 H2 {
  color: #073b4c;
}
.cid-tT2CedARzC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tT2CedARzC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tT2CedARzC .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tT2CedARzC .mbr-text {
  color: #000000;
}
.cid-tT2CvPdzvV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-tT2CvPdzvV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tT2CvPdzvV .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tT2CvPdzvV .mbr-text {
  color: #000000;
}
.cid-tT2Gra8boG {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-tT2Gra8boG .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tT2Gra8boG .main .mbr-section-btn {
  text-align: right;
}
.cid-tT2Gra8boG .btn {
  margin: 0 0 .5rem 0;
}
.cid-utUBBKeCXm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBBKeCXm .form-control,
.cid-utUBBKeCXm .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBBKeCXm .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBBKeCXm textarea.form-control {
  min-height: 188px;
}
.cid-utUBBKeCXm .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBBKeCXm .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-u0RhZg1VWk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0RhZg1VWk nav.navbar {
  position: fixed;
}
.cid-u0RhZg1VWk .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-u0RhZg1VWk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0RhZg1VWk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0RhZg1VWk .dropdown-item:hover,
.cid-u0RhZg1VWk .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-u0RhZg1VWk .dropdown-item:hover span {
  color: white;
}
.cid-u0RhZg1VWk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0RhZg1VWk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0RhZg1VWk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0RhZg1VWk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0RhZg1VWk .nav-link {
  position: relative;
}
.cid-u0RhZg1VWk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0RhZg1VWk .container {
    flex-wrap: nowrap;
  }
}
.cid-u0RhZg1VWk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0RhZg1VWk .dropdown-menu,
.cid-u0RhZg1VWk .navbar.opened {
  background: #232323 !important;
}
.cid-u0RhZg1VWk .nav-item:focus,
.cid-u0RhZg1VWk .nav-link:focus {
  outline: none;
}
.cid-u0RhZg1VWk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0RhZg1VWk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0RhZg1VWk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0RhZg1VWk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0RhZg1VWk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0RhZg1VWk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0RhZg1VWk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-u0RhZg1VWk .navbar.opened {
  transition: all 0.3s;
}
.cid-u0RhZg1VWk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0RhZg1VWk .navbar .navbar-logo img {
  width: auto;
}
.cid-u0RhZg1VWk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0RhZg1VWk .navbar.collapsed {
  justify-content: center;
}
.cid-u0RhZg1VWk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0RhZg1VWk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0RhZg1VWk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0RhZg1VWk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0RhZg1VWk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0RhZg1VWk .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-u0RhZg1VWk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0RhZg1VWk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0RhZg1VWk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0RhZg1VWk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0RhZg1VWk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0RhZg1VWk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0RhZg1VWk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0RhZg1VWk .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-u0RhZg1VWk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0RhZg1VWk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0RhZg1VWk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0RhZg1VWk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0RhZg1VWk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0RhZg1VWk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0RhZg1VWk .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0RhZg1VWk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0RhZg1VWk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0RhZg1VWk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0RhZg1VWk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0RhZg1VWk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0RhZg1VWk .dropdown-item.active,
.cid-u0RhZg1VWk .dropdown-item:active {
  background-color: transparent;
}
.cid-u0RhZg1VWk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0RhZg1VWk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0RhZg1VWk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0RhZg1VWk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-u0RhZg1VWk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0RhZg1VWk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0RhZg1VWk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0RhZg1VWk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0RhZg1VWk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0RhZg1VWk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0RhZg1VWk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0RhZg1VWk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RhZg1VWk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RhZg1VWk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0RhZg1VWk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RhZg1VWk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0RhZg1VWk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0RhZg1VWk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RhZg1VWk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0RhZg1VWk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0RhZg1VWk .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-u0RhZg1VWk .navbar {
    height: 70px;
  }
  .cid-u0RhZg1VWk .navbar.opened {
    height: auto;
  }
  .cid-u0RhZg1VWk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0RivFvWfk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-u0RivFvWfk .mbr-text,
.cid-u0RivFvWfk blockquote {
  color: #767676;
}
.cid-u0RivFvWfk .mbr-text P {
  text-align: left;
}
.cid-u0RivFvWfk .mbr-text {
  color: #ffffff;
}
.cid-u0RqCyezBz {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/videosystems-case-banner-1920x1080.jpg");
}
.cid-u0RjehL6z0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0RjehL6z0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u0RjehL6z0 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u0RjehL6z0 .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-u0RjehL6z0 .mbr-section-btn a {
  margin: 0;
}
.cid-u0RjehL6z0 .mbr-text {
  color: #767676;
}
.cid-u0RjehL6z0 .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u0RjehL6z0 .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-u0RjehL6z0 H2 {
  text-align: center;
  color: #073b4c;
}
.cid-u0RjehL6z0 .mbr-section-subtitle {
  text-align: center;
}
.cid-u0RjehL6z0 .card-title {
  text-align: center;
}
.cid-u0RjehL6z0 .mbr-text,
.cid-u0RjehL6z0 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u19narT9y0 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u19narT9y0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u19narT9y0 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-u19narT9y0 .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-u19narT9y0 .mbr-section-btn a {
  margin: 0;
}
.cid-u19narT9y0 .mbr-text {
  color: #767676;
}
.cid-u19narT9y0 .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u19narT9y0 .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-u19narT9y0 .card-title {
  text-align: center;
}
.cid-u19narT9y0 .mbr-text,
.cid-u19narT9y0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u181hcdCgQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u181hcdCgQ .mbr-section-subtitle {
  color: #000000;
}
.cid-u181hcdCgQ .formoid {
  margin: auto;
}
.cid-u181hcdCgQ .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-u181hcdCgQ .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-u181hcdCgQ input[type="email"] {
  border-radius: 100px !important;
}
.cid-u181hcdCgQ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-u181hcdCgQ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-u181hcdCgQ .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u181hcdCgQ .form-group,
  .cid-u181hcdCgQ .input-group-btn,
  .cid-u181hcdCgQ .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-u181hcdCgQ .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-u181hcdCgQ H2 {
  color: #073b4c;
}
.cid-u18vG1fiVE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-u18vG1fiVE .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u18vG1fiVE .section-text {
  padding: 2rem 0;
}
.cid-u18vG1fiVE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u18vG1fiVE .inner-container {
    width: 100% !important;
  }
}
.cid-u1C8TThhvq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u1C8TThhvq .mbr-section-btn > * {
  margin: 0;
}
.cid-u1C8TThhvq h4 {
  font-weight: 500;
}
.cid-u1C8TThhvq p {
  color: #232323;
}
.cid-u1C8TThhvq .aside-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u1C8TThhvq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-u1C8TThhvq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-u1C8TThhvq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-u1C8TThhvq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-u1C8TThhvq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-u1C8TThhvq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u1C8TThhvq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-u1C8TThhvq .card-img span {
    font-size: 40px !important;
  }
}
.cid-u1C8TThhvq .cost {
  text-decoration: line-through;
  color: #767676;
}
.cid-u18qbo67sp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
.cid-u18qbo67sp .mbr-section-subtitle {
  color: #767676;
}
.cid-u18qbo67sp .btn {
  margin: 0 0 .5rem 0;
}
.cid-u18qbo67sp H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uu6JXT0Fjg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-uu6JXT0Fjg .form-control,
.cid-uu6JXT0Fjg .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-uu6JXT0Fjg .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-uu6JXT0Fjg textarea.form-control {
  min-height: 188px;
}
.cid-uu6JXT0Fjg .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-uu6JXT0Fjg .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9rlmE3FVs {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/epl-top-banner-2000x922.jpg");
}
.cid-u9rlmE3FVs .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-u9rlmE3FVs .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u9rlmE3FVs .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u9rlmE3FVs .mbr-text {
    text-align: center;
  }
}
.cid-u9wrw7sKVE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9wrw7sKVE .mbr-section-subtitle {
  color: #000000;
}
.cid-u9wrw7sKVE H2 {
  color: #0f7699;
}
.cid-u9wrvrlLSR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9wrvrlLSR .mbr-text {
  color: #000000;
}
.cid-u9wt7zlNa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u9wt7zlNa8 h2 {
  text-align: center;
}
.cid-u9wt7zlNa8 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-u9wt7zlNa8 p {
  color: #767676;
}
.cid-u9wt7zlNa8 img {
  object-fit: cover;
}
.cid-u9wt7zlNa8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-u9wt7zlNa8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-u9wt7zlNa8 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-u9wt7zlNa8 .mbr-section-subtitle {
  color: #767676;
}
.cid-u9wt7zlNa8 .card-title {
  font-weight: 500;
}
.cid-u9wt7zlNa8 .card-img {
  text-align: inherit;
}
.cid-u9wt7zlNa8 .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-u9wt7zlNa8 .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-u9wt7zlNa8 .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u9wt7zlNa8 .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-u9wt7zlNa8 .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-u9wt7zlNa8 .card:nth-child(1) {
    padding-bottom: 0 !important;
  }
}
.cid-u9wt7zlNa8 .mbr-section-title {
  color: #0f7699;
}
.cid-u9wNL6NBPi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f6f7fb;
}
.cid-u9wNL6NBPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9wNL6NBPi .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u9wNL6NBPi .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9wNL6NBPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9wNL6NBPi .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: #0f7699;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #f6f7fb;
  height: 80px;
  border-radius: 50%;
}
.cid-u9wNL6NBPi .card-title,
.cid-u9wNL6NBPi .iconfont-wrapper,
.cid-u9wNL6NBPi .card-text {
  color: #000000;
  text-align: center;
}
.cid-u9wNL6NBPi .content-head {
  max-width: 800px;
}
.cid-u9wNL6NBPi .mbr-section-title {
  color: #0f7699;
}
.cid-u9wNL6NBPi .mbr-section-btn {
  text-align: center;
}
.cid-u9wNL6NBPi .card-text,
.cid-u9wNL6NBPi .mbr-section-btn {
  text-align: center;
}
.cid-u9wRMNF60x {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9wRMNF60x .mbr-section-subtitle {
  color: #000000;
}
.cid-u9wRMNF60x H2 {
  color: #0f7699;
}
.cid-u9wRyiLSw1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u9wRyiLSw1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u9wRyiLSw1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9wRyiLSw1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u9wRyiLSw1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u9wRyiLSw1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0f7699;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u9wRyiLSw1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u9wRyiLSw1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u9wRyiLSw1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u9wRyiLSw1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #0f7699 !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u9wTcCbKWW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9wTcCbKWW .mbr-section-subtitle {
  color: #000000;
}
.cid-u9wTcCbKWW H2 {
  color: #0f7699;
}
.cid-u9wUYIsOBv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9wUYIsOBv img,
.cid-u9wUYIsOBv .item-img {
  width: 100%;
}
.cid-u9wUYIsOBv .item:focus,
.cid-u9wUYIsOBv span:focus {
  outline: none;
}
.cid-u9wUYIsOBv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u9wUYIsOBv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u9wUYIsOBv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u9wUYIsOBv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u9wUYIsOBv .item-wrapper {
  background: transparent;
}
.cid-u9wUYIsOBv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u9wUYIsOBv .mbr-section-title {
  color: #0f7699;
}
.cid-u9wUYIsOBv .mbr-text,
.cid-u9wUYIsOBv .mbr-section-btn {
  text-align: left;
}
.cid-u9wUYIsOBv .item-title {
  text-align: left;
}
.cid-u9wUYIsOBv .item-subtitle {
  text-align: center;
}
.cid-u9xF8amZJT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f6f7fb;
}
.cid-u9xF8amZJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9xF8amZJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9xF8amZJT .row {
  flex-direction: row-reverse;
}
.cid-u9xF8amZJT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u9xF8amZJT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u9xF8amZJT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u9xF8amZJT .mbr-section-title {
  text-align: left;
}
.cid-u9xF8amZJT .mbr-text,
.cid-u9xF8amZJT .mbr-section-btn {
  text-align: left;
}
.cid-u9ZDYrgkZR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fefcf2;
}
.cid-u9ZDYrgkZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9ZDYrgkZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9ZDYrgkZR .mbr-side-description {
  text-align: left;
}
.cid-u9ZDYrgkZR .mbr-description {
  color: #0f7699;
}
.cid-u9xHuUaubB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u9xHuUaubB .mbr-section-subtitle {
  color: #000000;
  text-align: center;
  font-weight: 300;
}
.cid-u9xHuUaubB .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-u9xHuUaubB .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-u9xHuUaubB .separline {
  position: relative;
}
.cid-u9xHuUaubB .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-u9xHuUaubB .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-utUzJ72JWh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUzJ72JWh .form-control,
.cid-utUzJ72JWh .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUzJ72JWh .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUzJ72JWh textarea.form-control {
  min-height: 188px;
}
.cid-utUzJ72JWh .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUzJ72JWh .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
.cid-umOwrKgtGv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-umOwrKgtGv nav.navbar {
  position: fixed;
}
.cid-umOwrKgtGv .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-umOwrKgtGv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umOwrKgtGv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umOwrKgtGv .dropdown-item:hover,
.cid-umOwrKgtGv .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-umOwrKgtGv .dropdown-item:hover span {
  color: white;
}
.cid-umOwrKgtGv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umOwrKgtGv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umOwrKgtGv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umOwrKgtGv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umOwrKgtGv .nav-link {
  position: relative;
}
.cid-umOwrKgtGv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umOwrKgtGv .container {
    flex-wrap: nowrap;
  }
}
.cid-umOwrKgtGv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umOwrKgtGv .dropdown-menu,
.cid-umOwrKgtGv .navbar.opened {
  background: #232323 !important;
}
.cid-umOwrKgtGv .nav-item:focus,
.cid-umOwrKgtGv .nav-link:focus {
  outline: none;
}
.cid-umOwrKgtGv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umOwrKgtGv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umOwrKgtGv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umOwrKgtGv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umOwrKgtGv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umOwrKgtGv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umOwrKgtGv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-umOwrKgtGv .navbar.opened {
  transition: all 0.3s;
}
.cid-umOwrKgtGv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umOwrKgtGv .navbar .navbar-logo img {
  width: auto;
}
.cid-umOwrKgtGv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umOwrKgtGv .navbar.collapsed {
  justify-content: center;
}
.cid-umOwrKgtGv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umOwrKgtGv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umOwrKgtGv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umOwrKgtGv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umOwrKgtGv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umOwrKgtGv .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-umOwrKgtGv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umOwrKgtGv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umOwrKgtGv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umOwrKgtGv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umOwrKgtGv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umOwrKgtGv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umOwrKgtGv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umOwrKgtGv .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-umOwrKgtGv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umOwrKgtGv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umOwrKgtGv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umOwrKgtGv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umOwrKgtGv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umOwrKgtGv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umOwrKgtGv .navbar.navbar-short {
  min-height: 60px;
}
.cid-umOwrKgtGv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umOwrKgtGv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umOwrKgtGv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umOwrKgtGv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umOwrKgtGv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umOwrKgtGv .dropdown-item.active,
.cid-umOwrKgtGv .dropdown-item:active {
  background-color: transparent;
}
.cid-umOwrKgtGv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umOwrKgtGv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umOwrKgtGv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umOwrKgtGv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-umOwrKgtGv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umOwrKgtGv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umOwrKgtGv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umOwrKgtGv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umOwrKgtGv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umOwrKgtGv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-umOwrKgtGv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umOwrKgtGv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umOwrKgtGv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umOwrKgtGv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umOwrKgtGv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umOwrKgtGv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umOwrKgtGv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umOwrKgtGv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umOwrKgtGv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umOwrKgtGv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umOwrKgtGv .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-umOwrKgtGv .navbar {
    height: 70px;
  }
  .cid-umOwrKgtGv .navbar.opened {
    height: auto;
  }
  .cid-umOwrKgtGv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umOxjgmtMI {
  padding-top: 105px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/traffic-monitoring-solid-1920x1399.jpg");
}
.cid-umOxO8fMPz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umOxO8fMPz .mbr-section-subtitle {
  color: #000000;
}
.cid-umOyD9y4pn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umOyD9y4pn .counter-container {
  color: #767676;
}
.cid-umOyD9y4pn .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-umOyD9y4pn .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-umOyD9y4pn .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-umOyD9y4pn .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-umOyD9y4pn .mbr-text {
  color: #000000;
}
.cid-umOzyhNGPB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umOzyhNGPB .mbr-section-subtitle {
  color: #767676;
}
.cid-umOzNOTWnk {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-umOzNOTWnk .image-block {
  margin: auto;
}
.cid-umOzNOTWnk figcaption {
  position: relative;
}
.cid-umOzNOTWnk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-umOzNOTWnk .image-block {
    width: 100% !important;
  }
}
.cid-umOAhYcS1X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umOAhYcS1X .mbr-section-subtitle {
  color: #767676;
}
.cid-umOA9RxFFo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umOA9RxFFo .mbr-text {
  color: #767676;
}
.cid-umOA9RxFFo h4 {
  text-align: center;
}
.cid-umOA9RxFFo p {
  text-align: center;
}
.cid-umOA9RxFFo .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-umOTnhCmd2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umOTnhCmd2 img,
.cid-umOTnhCmd2 .item-img {
  width: 100%;
}
.cid-umOTnhCmd2 .item:focus,
.cid-umOTnhCmd2 span:focus {
  outline: none;
}
.cid-umOTnhCmd2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umOTnhCmd2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umOTnhCmd2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umOTnhCmd2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umOTnhCmd2 .item-wrapper {
  background: transparent;
}
.cid-umOTnhCmd2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umOTnhCmd2 .mbr-section-title {
  color: #232323;
}
.cid-umOTnhCmd2 .mbr-text,
.cid-umOTnhCmd2 .mbr-section-btn {
  text-align: left;
}
.cid-umOTnhCmd2 .item-title {
  text-align: center;
}
.cid-umOTnhCmd2 .item-subtitle {
  text-align: center;
}
.cid-umOV5IYEO5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-umOV5IYEO5 h3 {
  font-weight: 300;
}
.cid-umOV5IYEO5 .card-img {
  width: initial;
}
.cid-umOV5IYEO5 .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-umOV5IYEO5 .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-umOV5IYEO5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umOV5IYEO5 .mbr-section-subtitle {
  color: #767676;
}
.cid-umOV5IYEO5 .mbr-text {
  color: #000000;
}
.cid-umOV5IYEO5 .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umOV5IYEO5 .mbr-al-i-c {
  align-items: center;
}
.cid-umOV5IYEO5 .card-title,
.cid-umOV5IYEO5 .card-img {
  text-align: left;
}
.cid-umPbt0LztI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umPbt0LztI .mbr-section-subtitle {
  color: #767676;
}
.cid-umP6sWyAyv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-umP6sWyAyv .carousel {
    max-height: 600px;
  }
  .cid-umP6sWyAyv .carousel img {
    height: 600px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-umP6sWyAyv .carousel {
    min-height: 390px;
  }
  .cid-umP6sWyAyv .carousel img {
    height: 390px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-umP6sWyAyv .carousel {
    min-height: 330px;
  }
  .cid-umP6sWyAyv .carousel img {
    height: 330px;
    object-fit: cover;
  }
  .cid-umP6sWyAyv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-umP6sWyAyv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-umP6sWyAyv .carousel,
.cid-umP6sWyAyv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-umP6sWyAyv .item-wrapper {
  width: 100%;
}
.cid-umP6sWyAyv .item-menu-overlay {
  border-radius: 2rem;
}
.cid-umP6sWyAyv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-umP6sWyAyv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-umP6sWyAyv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-umP6sWyAyv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-umP6sWyAyv .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-umP6sWyAyv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umP6sWyAyv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umP6sWyAyv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umP6sWyAyv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-umP6sWyAyv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-umP6sWyAyv .carousel-indicators li.active,
.cid-umP6sWyAyv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umP6sWyAyv .carousel-indicators li::after,
.cid-umP6sWyAyv .carousel-indicators li::before {
  content: none;
}
.cid-umP6sWyAyv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umP6sWyAyv .carousel-indicators {
    display: none !important;
  }
}
.cid-utUBTBGqdO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUBTBGqdO .form-control,
.cid-utUBTBGqdO .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUBTBGqdO .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUBTBGqdO textarea.form-control {
  min-height: 188px;
}
.cid-utUBTBGqdO .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUBTBGqdO .content-container {
    padding-right: 5rem;
  }
}
.cid-umOwrNfeuN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-umOwrNfeuN .content {
    text-align: center;
  }
  .cid-umOwrNfeuN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-umOwrNfeuN .logo-subtitle {
  color: #8d97ad;
}
.cid-umOwrNfeuN .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-umOwrNfeuN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-umOwrNfeuN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-umOwrNfeuN .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-umOwrNfeuN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-umOwrNfeuN .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-umOwrNfeuN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-umOwrNfeuN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-umOwrNfeuN .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-umOwrNfeuN .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-umOwrNfeuN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-umOwrNfeuN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-umOwrNfeuN .list-item {
  display: flex;
}
.cid-umOwrNfeuN .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-umOwrNfeuN ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-umOwrNfeuN ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-umOwrNfeuN ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-umOwrNfeuN P {
  color: #ffffff;
}
.cid-umOwrNfeuN .column-title {
  color: #ffffff;
}
.cid-umOwrNfeuN .logo-subtitle,
.cid-umOwrNfeuN .media-wrap {
  color: #ffffff;
}
.cid-umOwrNfeuN .mbr-text {
  color: #ffffff;
}
.cid-unzp6OENKY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-unzp6OENKY nav.navbar {
  position: fixed;
}
.cid-unzp6OENKY .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-unzp6OENKY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unzp6OENKY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unzp6OENKY .dropdown-item:hover,
.cid-unzp6OENKY .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-unzp6OENKY .dropdown-item:hover span {
  color: white;
}
.cid-unzp6OENKY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unzp6OENKY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unzp6OENKY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unzp6OENKY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unzp6OENKY .nav-link {
  position: relative;
}
.cid-unzp6OENKY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-unzp6OENKY .container {
    flex-wrap: nowrap;
  }
}
.cid-unzp6OENKY .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unzp6OENKY .dropdown-menu,
.cid-unzp6OENKY .navbar.opened {
  background: #232323 !important;
}
.cid-unzp6OENKY .nav-item:focus,
.cid-unzp6OENKY .nav-link:focus {
  outline: none;
}
.cid-unzp6OENKY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unzp6OENKY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unzp6OENKY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unzp6OENKY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unzp6OENKY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unzp6OENKY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unzp6OENKY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-unzp6OENKY .navbar.opened {
  transition: all 0.3s;
}
.cid-unzp6OENKY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unzp6OENKY .navbar .navbar-logo img {
  width: auto;
}
.cid-unzp6OENKY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unzp6OENKY .navbar.collapsed {
  justify-content: center;
}
.cid-unzp6OENKY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unzp6OENKY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unzp6OENKY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-unzp6OENKY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unzp6OENKY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unzp6OENKY .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-unzp6OENKY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unzp6OENKY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unzp6OENKY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unzp6OENKY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unzp6OENKY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unzp6OENKY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unzp6OENKY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unzp6OENKY .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-unzp6OENKY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unzp6OENKY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unzp6OENKY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unzp6OENKY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unzp6OENKY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unzp6OENKY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unzp6OENKY .navbar.navbar-short {
  min-height: 60px;
}
.cid-unzp6OENKY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unzp6OENKY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unzp6OENKY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unzp6OENKY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unzp6OENKY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unzp6OENKY .dropdown-item.active,
.cid-unzp6OENKY .dropdown-item:active {
  background-color: transparent;
}
.cid-unzp6OENKY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unzp6OENKY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unzp6OENKY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unzp6OENKY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-unzp6OENKY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unzp6OENKY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unzp6OENKY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unzp6OENKY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unzp6OENKY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unzp6OENKY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-unzp6OENKY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unzp6OENKY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unzp6OENKY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unzp6OENKY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unzp6OENKY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unzp6OENKY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unzp6OENKY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unzp6OENKY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unzp6OENKY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unzp6OENKY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unzp6OENKY .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-unzp6OENKY .navbar {
    height: 70px;
  }
  .cid-unzp6OENKY .navbar.opened {
    height: auto;
  }
  .cid-unzp6OENKY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unzp6P1c9U {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/les-horisontal-1920x1046.jpg");
}
.cid-unzpDcSHjp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzpDcSHjp .mbr-text,
.cid-unzpDcSHjp blockquote {
  color: #767676;
}
.cid-unzpDcSHjp .mbr-text {
  color: #000000;
}
.cid-unzpDcSHjp .mbr-text P {
  text-align: center;
}
.cid-unzqdXM1ge {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzqdXM1ge h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-unzqdXM1ge p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-unzqdXM1ge .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-unzqdXM1ge .mbr-section-btn a {
  margin: 0;
}
.cid-unzqdXM1ge .mbr-text {
  color: #767676;
}
.cid-unzqdXM1ge .card-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .cid-unzqdXM1ge .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-unzqdXM1ge H2 {
  text-align: center;
}
.cid-unzqdXM1ge .card-title {
  text-align: center;
}
.cid-unzqdXM1ge .mbr-text,
.cid-unzqdXM1ge .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-unzqdXM1ge .mbr-section-subtitle {
  text-align: center;
}
.cid-unzry1TsU2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unzry1TsU2 .mbr-section-subtitle {
  color: #000000;
}
.cid-unzqUKyMVP {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-unzqUKyMVP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unzqUKyMVP .row {
  flex-direction: row-reverse;
}
.cid-unzqUKyMVP img {
  width: 100%;
}
.cid-unzrQy6HAW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzrQy6HAW .mbr-text,
.cid-unzrQy6HAW blockquote {
  color: #767676;
}
.cid-unzrQy6HAW .mbr-text {
  color: #000000;
}
.cid-unzryA4H9o {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unzryA4H9o .mbr-section-subtitle {
  color: #767676;
}
.cid-unzrvVNTmb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-unzrvVNTmb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unzrvVNTmb .row {
  flex-direction: row-reverse;
}
.cid-unzrvVNTmb img {
  width: 100%;
}
.cid-unzsyE1526 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzsyE1526 .mbr-text,
.cid-unzsyE1526 blockquote {
  color: #767676;
}
.cid-unzsyE1526 .mbr-text {
  color: #000000;
}
.cid-unzrz1KyHM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unzrz1KyHM .mbr-section-subtitle {
  color: #767676;
}
.cid-unzrwoE9xx {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-unzrwoE9xx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unzrwoE9xx .row {
  flex-direction: row-reverse;
}
.cid-unzrwoE9xx img {
  width: 100%;
}
.cid-unzszK5GND {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzszK5GND .mbr-text,
.cid-unzszK5GND blockquote {
  color: #767676;
}
.cid-unzszK5GND .mbr-text {
  color: #000000;
}
.cid-unzp6PR4GN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/era-banner-docs-1920x630.jpg");
}
.cid-unzp6PR4GN P {
  color: #767676;
}
.cid-unzp6PR4GN .mbr-text,
.cid-unzp6PR4GN .mbr-section-btn {
  color: #000000;
}
.cid-unzp6PR4GN H1 {
  color: #073b4c;
}
.cid-unzp6QzGkq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unzp6QzGkq .mbr-section-subtitle {
  color: #000000;
}
.cid-unzp6QzGkq H2 {
  color: #073b4c;
}
.cid-unzp6QPmcD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6QPmcD .mbr-text {
  color: #000000;
}
.cid-unzp6Rd2C4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6Rd2C4 .mbr-text {
  color: #000000;
}
.cid-unzp6Rxlpf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6Rxlpf .mbr-text {
  color: #000000;
}
.cid-unzp6RUtcT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6RUtcT .mbr-text {
  color: #000000;
}
.cid-unzp6ScTK0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6ScTK0 .mbr-text {
  color: #000000;
}
.cid-unzp6SKtw2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unzp6SKtw2 .mbr-section-subtitle {
  color: #767676;
}
.cid-unzp6SKtw2 H2 {
  color: #073b4c;
}
.cid-unzp6T0Nf0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unzp6T0Nf0 .counter-container {
  color: #767676;
}
.cid-unzp6T0Nf0 .counter-container ul {
  margin-bottom: 0;
}
.cid-unzp6T0Nf0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-unzp6T0Nf0 .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #073b4c;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-unzp6T0Nf0 .mbr-text {
  color: #000000;
}
.cid-utUGG0IvHb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUGG0IvHb .form-control,
.cid-utUGG0IvHb .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUGG0IvHb .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUGG0IvHb textarea.form-control {
  min-height: 188px;
}
.cid-utUGG0IvHb .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUGG0IvHb .content-container {
    padding-right: 5rem;
  }
}
.cid-unzp6TA7QR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-unzp6TA7QR .content {
    text-align: center;
  }
  .cid-unzp6TA7QR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-unzp6TA7QR .logo-subtitle {
  color: #8d97ad;
}
.cid-unzp6TA7QR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-unzp6TA7QR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-unzp6TA7QR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-unzp6TA7QR .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-unzp6TA7QR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-unzp6TA7QR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-unzp6TA7QR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unzp6TA7QR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-unzp6TA7QR .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-unzp6TA7QR .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-unzp6TA7QR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-unzp6TA7QR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-unzp6TA7QR .list-item {
  display: flex;
}
.cid-unzp6TA7QR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-unzp6TA7QR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-unzp6TA7QR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-unzp6TA7QR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-unzp6TA7QR P {
  color: #ffffff;
}
.cid-unzp6TA7QR .column-title {
  color: #ffffff;
}
.cid-unzp6TA7QR .logo-subtitle,
.cid-unzp6TA7QR .media-wrap {
  color: #ffffff;
}
.cid-unzp6TA7QR .mbr-text {
  color: #ffffff;
}
.cid-tvbbrJ5mVw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvbbrJ5mVw nav.navbar {
  position: fixed;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvbbrJ5mVw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvbbrJ5mVw .dropdown-item:hover,
.cid-tvbbrJ5mVw .dropdown-item:focus {
  background: #149dcc !important;
  color: white !important;
}
.cid-tvbbrJ5mVw .dropdown-item:hover span {
  color: white;
}
.cid-tvbbrJ5mVw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvbbrJ5mVw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvbbrJ5mVw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvbbrJ5mVw .nav-link {
  position: relative;
}
.cid-tvbbrJ5mVw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .container {
    flex-wrap: nowrap;
  }
}
.cid-tvbbrJ5mVw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown-menu,
.cid-tvbbrJ5mVw .navbar.opened {
  background: #232323 !important;
}
.cid-tvbbrJ5mVw .nav-item:focus,
.cid-tvbbrJ5mVw .nav-link:focus {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvbbrJ5mVw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvbbrJ5mVw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvbbrJ5mVw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvbbrJ5mVw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.opened {
  transition: all 0.3s;
}
.cid-tvbbrJ5mVw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvbbrJ5mVw .navbar .navbar-logo img {
  width: auto;
}
.cid-tvbbrJ5mVw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar.collapsed {
  justify-content: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvbbrJ5mVw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvbbrJ5mVw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvbbrJ5mVw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvbbrJ5mVw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvbbrJ5mVw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvbbrJ5mVw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvbbrJ5mVw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvbbrJ5mVw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvbbrJ5mVw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvbbrJ5mVw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvbbrJ5mVw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvbbrJ5mVw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvbbrJ5mVw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvbbrJ5mVw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvbbrJ5mVw .dropdown-item.active,
.cid-tvbbrJ5mVw .dropdown-item:active {
  background-color: transparent;
}
.cid-tvbbrJ5mVw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvbbrJ5mVw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tvbbrJ5mVw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvbbrJ5mVw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvbbrJ5mVw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvbbrJ5mVw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvbbrJ5mVw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvbbrJ5mVw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvbbrJ5mVw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvbbrJ5mVw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvbbrJ5mVw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvbbrJ5mVw .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-tvbbrJ5mVw .navbar {
    height: 70px;
  }
  .cid-tvbbrJ5mVw .navbar.opened {
    height: auto;
  }
  .cid-tvbbrJ5mVw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snLZzE7XPn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3c3c3c;
}
.cid-snLZzE7XPn .mbr-text,
.cid-snLZzE7XPn blockquote {
  color: #767676;
}
.cid-snLZzE7XPn .mbr-text P {
  text-align: left;
}
.cid-snLZzE7XPn .mbr-text {
  color: #ffffff;
}
.cid-snLZzEy8Fs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snLZzEy8Fs .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-snLZzEy8Fs .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #465052;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #465052;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-snLZzEy8Fs .nav-tabs .nav-link:hover {
  background-color: #149dcc;
}
.cid-snLZzEy8Fs .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #149dcc;
}
.cid-snLZzEy8Fs .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #149dcc;
}
.cid-snLZzEy8Fs .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-snLZzEy8Fs .mbr-section-subtitle {
  color: #000000;
}
.cid-snLZzEy8Fs p {
  color: #767676;
}
.cid-snLZzEy8Fs .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-snLZzEy8Fs .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-snLZzEy8Fs .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-snLZzEy8Fs P {
  color: #000000;
}
.cid-snLZzFi3J8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-snLZzFi3J8 .mbr-text {
  color: #ffffff;
}
.cid-snLZzFi3J8 h4 {
  text-align: center;
}
.cid-snLZzFi3J8 p {
  text-align: center;
}
.cid-snLZzFi3J8 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-snLZzFi3J8 .card-title,
.cid-snLZzFi3J8 .card-img {
  color: #ffffff;
}
.cid-uu6I5knqWX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/laws-background-1920x1280.jpg");
}
.cid-uu6I5knqWX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu6I5knqWX p {
  color: #767676;
  text-align: left;
}
.cid-uu6I5knqWX .card-box {
  padding-top: 2rem;
}
.cid-uu6I5knqWX .card-wrapper {
  height: 100%;
}
.cid-uu6I5knqWX P {
  text-align: center;
}
.cid-uu6I5knqWX .card-title {
  text-align: center;
}
.cid-utUByUVZJW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/amoform-back-1920x1200.jpg");
}
.cid-utUByUVZJW .form-control,
.cid-utUByUVZJW .form-control:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.cid-utUByUVZJW .form-container {
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-utUByUVZJW textarea.form-control {
  min-height: 188px;
}
.cid-utUByUVZJW .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-utUByUVZJW .content-container {
    padding-right: 5rem;
  }
}
.cid-u4HTDsNfhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ic-company-ru.svg");
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .content {
    text-align: center;
  }
  .cid-u4HTDsNfhe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u4HTDsNfhe .logo-subtitle {
  color: #8d97ad;
}
.cid-u4HTDsNfhe .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u4HTDsNfhe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u4HTDsNfhe .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4HTDsNfhe .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-u4HTDsNfhe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4HTDsNfhe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u4HTDsNfhe .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u4HTDsNfhe .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u4HTDsNfhe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4HTDsNfhe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4HTDsNfhe .list-item {
  display: flex;
}
.cid-u4HTDsNfhe .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-u4HTDsNfhe ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-u4HTDsNfhe ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-u4HTDsNfhe ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-u4HTDsNfhe P {
  color: #ffffff;
}
.cid-u4HTDsNfhe .column-title {
  color: #ffffff;
}
.cid-u4HTDsNfhe .logo-subtitle,
.cid-u4HTDsNfhe .media-wrap {
  color: #ffffff;
}
.cid-u4HTDsNfhe .mbr-text {
  color: #ffffff;
}
