body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Kanit', sans-serif;
  font-size: 4.2rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Kanit', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 11px 35px;
  border-radius: 3px;
}
.btn-sm {
  padding: 15px 35px;
  border-radius: 3px;
}
.btn-md {
  padding: 18px 50px;
  border-radius: 3px;
}
.btn-lg {
  padding: 19px 50px;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff0000 !important;
}
.bg-success {
  background-color: #11ff88 !important;
}
.bg-info {
  background-color: #cc4483 !important;
}
.bg-warning {
  background-color: #f5720d !important;
}
.bg-danger {
  background-color: #f8d68e !important;
}
.btn-primary {
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}
.btn-primary:before {
  background: #ff0000;
}
.btn-primary:hover {
  color: #ffffff !important;
  border-color: #ff0000 !important;
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-secondary {
  box-shadow: 0 15px 30px 0 rgba(0, 13, 32, 0.15);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000d20 !important;
  border-color: #000d20 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:before {
  background: #000d20;
}
.btn-secondary:hover {
  color: #ffffff !important;
  border-color: #000d20 !important;
  box-shadow: 0 15px 30px 0 rgba(0, 13, 32, 0.15);
}
.btn-info {
  box-shadow: 0 15px 30px 0 rgba(204, 68, 131, 0.15);
}
.btn-info,
.btn-info:active {
  background-color: #cc4483 !important;
  border-color: #cc4483 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ae2f6a !important;
  border-color: #ae2f6a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ae2f6a !important;
  border-color: #ae2f6a !important;
}
.btn-info:before {
  background: #cc4483;
}
.btn-info:hover {
  color: #ffffff !important;
  border-color: #cc4483 !important;
  box-shadow: 0 15px 30px 0 rgba(204, 68, 131, 0.15);
}
.btn-success {
  box-shadow: 0 15px 30px 0 rgba(17, 255, 136, 0.15);
}
.btn-success,
.btn-success:active {
  background-color: #11ff88 !important;
  border-color: #11ff88 !important;
  color: #001109 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #00dd6f !important;
  border-color: #00dd6f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #001109 !important;
  background-color: #00dd6f !important;
  border-color: #00dd6f !important;
}
.btn-success:before {
  background: #11ff88;
}
.btn-success:hover {
  color: #000000 !important;
  border-color: #11ff88 !important;
  box-shadow: 0 15px 30px 0 rgba(17, 255, 136, 0.15);
}
.btn-warning {
  box-shadow: 0 15px 30px 0 rgba(245, 114, 13, 0.15);
}
.btn-warning,
.btn-warning:active {
  background-color: #f5720d !important;
  border-color: #f5720d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #c75b08 !important;
  border-color: #c75b08 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c75b08 !important;
  border-color: #c75b08 !important;
}
.btn-warning:before {
  background: #f5720d;
}
.btn-warning:hover {
  color: #ffffff !important;
  border-color: #f5720d !important;
  box-shadow: 0 15px 30px 0 rgba(245, 114, 13, 0.15);
}
.btn-danger {
  box-shadow: 0 15px 30px 0 rgba(248, 214, 142, 0.15);
}
.btn-danger,
.btn-danger:active {
  background-color: #f8d68e !important;
  border-color: #f8d68e !important;
  color: #7f5908 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #f5c55e !important;
  border-color: #f5c55e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7f5908 !important;
  background-color: #f5c55e !important;
  border-color: #f5c55e !important;
}
.btn-danger:before {
  background: #f8d68e;
}
.btn-danger:hover {
  color: #000000 !important;
  border-color: #f8d68e !important;
  box-shadow: 0 15px 30px 0 rgba(248, 214, 142, 0.15);
}
.btn-white {
  color: #ff0000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.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: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:before {
  background: #ff0000;
}
.btn-white:hover {
  color: #ffffff !important;
  border-color: #ff0000 !important;
  background-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  background: #4d4d4d;
}
.btn-black:hover {
  border-color: #4d4d4d !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-primary-outline:before {
  background: #ff0000;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #000d20;
  color: #000d20;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #000d20 !important;
  border-color: #000d20 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000d20 !important;
  border-color: #000d20 !important;
}
.btn-secondary-outline:before {
  background: #000d20;
}
.btn-secondary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(0, 13, 32, 0.15);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #cc4483;
  color: #cc4483;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #cc4483 !important;
  border-color: #cc4483 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cc4483 !important;
  border-color: #cc4483 !important;
}
.btn-info-outline:before {
  background: #cc4483;
}
.btn-info-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(204, 68, 131, 0.15);
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #11ff88;
  color: #11ff88;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #001109 !important;
  background-color: #11ff88 !important;
  border-color: #11ff88 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #001109 !important;
  background-color: #11ff88 !important;
  border-color: #11ff88 !important;
}
.btn-success-outline:before {
  background: #11ff88;
}
.btn-success-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(17, 255, 136, 0.15);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f5720d;
  color: #f5720d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #f5720d !important;
  border-color: #f5720d !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f5720d !important;
  border-color: #f5720d !important;
}
.btn-warning-outline:before {
  background: #f5720d;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(245, 114, 13, 0.15);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f8d68e;
  color: #f8d68e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #7f5908 !important;
  background-color: #f8d68e !important;
  border-color: #f8d68e !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7f5908 !important;
  background-color: #f8d68e !important;
  border-color: #f8d68e !important;
}
.btn-danger-outline:before {
  background: #f8d68e;
}
.btn-danger-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(248, 214, 142, 0.15);
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black-outline:before {
  background: #4d4d4d;
}
.btn-white-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #ff0000 !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-white-outline:before {
  background: #ffffff;
}
.text-primary {
  color: #ff0000 !important;
}
.text-secondary {
  color: #000d20 !important;
}
.text-success {
  color: #11ff88 !important;
}
.text-info {
  color: #cc4483 !important;
}
.text-warning {
  color: #f5720d !important;
}
.text-danger {
  color: #f8d68e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #990000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00aa55 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #862451 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #964506 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #f2b32e !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #ff0000;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #40A50B;
}
.alert-info {
  background-color: #cc4483;
}
.alert-warning {
  background-color: #f5720d;
}
.alert-danger {
  background-color: #f8d68e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff0000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcccc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ddffee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f8e4ed;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fde4d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #ff0000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff0000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff0000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff0000;
  border-bottom-color: #ff0000;
}
.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: #ff0000 !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: #000d20 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff0000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a.btn-white {
  color: #ff0000 !important;
}
.mbr-arrow-up {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
}
.mbr-arrow-up a {
  background: rgba(255, 0, 0, 0.6);
}
.mbr-arrow-up a:hover {
  background: #ff0000;
}
.cid-sk0BN0LxSS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sk0BN0LxSS nav.navbar {
  position: fixed;
}
.cid-sk0BN0LxSS .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-sk0BN0LxSS .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-sk0BN0LxSS .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-sk0BN0LxSS .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-sk0BN0LxSS .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-sk0BN0LxSS .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-sk0BN0LxSS .dropdown-item:hover,
.cid-sk0BN0LxSS .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-sk0BN0LxSS .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-sk0BN0LxSS .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-sk0BN0LxSS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-sk0BN0LxSS .nav-link {
  position: relative;
  line-height: 1;
}
.cid-sk0BN0LxSS .nav-link:hover {
  color: #ff0000 !important;
}
.cid-sk0BN0LxSS .container {
  display: flex;
  margin: auto;
}
.cid-sk0BN0LxSS .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-sk0BN0LxSS .dropdown-menu,
.cid-sk0BN0LxSS .navbar.opened {
  background: #000d20 !important;
}
.cid-sk0BN0LxSS .nav-item:focus,
.cid-sk0BN0LxSS .nav-link:focus {
  outline: none;
}
.cid-sk0BN0LxSS .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-sk0BN0LxSS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sk0BN0LxSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sk0BN0LxSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sk0BN0LxSS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sk0BN0LxSS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-sk0BN0LxSS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-sk0BN0LxSS .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-sk0BN0LxSS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sk0BN0LxSS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sk0BN0LxSS .navbar.opened {
  transition: all 0.3s;
}
.cid-sk0BN0LxSS .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-sk0BN0LxSS .navbar .navbar-logo img {
  width: auto;
}
.cid-sk0BN0LxSS .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sk0BN0LxSS .navbar.collapsed {
  justify-content: center;
}
.cid-sk0BN0LxSS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sk0BN0LxSS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sk0BN0LxSS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sk0BN0LxSS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sk0BN0LxSS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sk0BN0LxSS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-sk0BN0LxSS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sk0BN0LxSS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sk0BN0LxSS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sk0BN0LxSS .navbar .dropdown-menu {
    display: none;
  }
  .cid-sk0BN0LxSS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sk0BN0LxSS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sk0BN0LxSS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-sk0BN0LxSS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sk0BN0LxSS .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-sk0BN0LxSS .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-sk0BN0LxSS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sk0BN0LxSS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sk0BN0LxSS .navbar .navbar-buttons,
  .cid-sk0BN0LxSS .navbar .icons-menu {
    display: none;
  }
  .cid-sk0BN0LxSS .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-sk0BN0LxSS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sk0BN0LxSS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sk0BN0LxSS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sk0BN0LxSS .dropdown-item.active,
.cid-sk0BN0LxSS .dropdown-item:active {
  background-color: transparent;
}
.cid-sk0BN0LxSS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sk0BN0LxSS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-sk0BN0LxSS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sk0BN0LxSS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sk0BN0LxSS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sk0BN0LxSS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sk0BN0LxSS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sk0BN0LxSS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sk0BN0LxSS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sk0BN0LxSS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sk0BN0LxSS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sk0BN0LxSS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sk0BN0LxSS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sk0BN0LxSS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sk0BN0LxSS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sk0BN0LxSS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sk0BN0LxSS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-sk0BN0LxSS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sk0BN0LxSS .navbar {
    height: 70px;
  }
  .cid-sk0BN0LxSS .navbar.opened {
    height: auto;
  }
  .cid-sk0BN0LxSS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sk0DXaAKtK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-sk0DXaAKtK .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-sk0DXaAKtK .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-sk0DXaAKtK .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sk0DXaAKtK .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-sk0DXaAKtK .mbr-section-btn {
  display: inline-block;
}
.cid-sk0DXaAKtK .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-sk0DXaAKtK .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0DXaAKtK .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-sk0DXaAKtK .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-sk0DXaAKtK .btn_link:hover {
  cursor: pointer;
}
.cid-sk0DXaAKtK .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-sk0DXaAKtK .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-sk0DXaAKtK .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-sk0DXaAKtK .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-sk0DXaAKtK .head_block {
    order: 1;
    text-align: center;
  }
  .cid-sk0DXaAKtK .image_img {
    margin-bottom: 40px;
  }
  .cid-sk0DXaAKtK .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-sk0DXaAKtK .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sk0DXaAKtK .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
  .cid-sk0DXaAKtK .btn_group {
    display: inline-flex;
    flex-direction: column;
  }
}
.cid-sk0DXaAKtK .mbr-text,
.cid-sk0DXaAKtK .buttons_wrap {
  color: #ffffff;
}
.cid-uHplw2xEDb {
  background-color: #000d20 !important;
  border: 18px solid #000d20;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-uHplw2xEDb {
    border: 8px solid #000d20;
    margin-top: -8px;
  }
}
.cid-uHplw2xEDb .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uHplw2xEDb section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-uHplw2xEDb .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHplw2xEDb .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHplw2xEDb .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHplw2xEDb .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uHplw2xEDb .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHplw2xEDb .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHplw2xEDb .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uHplw2xEDb .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHplw2xEDb .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-uHplw2xEDb .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uHplw2xEDb .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #155e9b;
}
.cid-uHplw2xEDb .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHplw2xEDb .image-wrapper {
    height: auto;
  }
}
.cid-uHplw2xEDb .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uHplw2xEDb .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-uHplw2xEDb .mbr-section-title {
  color: #ed2c03;
}
.cid-uHplw2xEDb .list {
  color: #000000;
}
.cid-uHpghHE8k9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpghHE8k9 .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHpghHE8k9 .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHpghHE8k9 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHpghHE8k9 .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHpghHE8k9 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHpghHE8k9 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHpghHE8k9 .mbr-section-btn .btn-secondary-outline .active,
.cid-uHpghHE8k9 .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHpghHE8k9 .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHpghHE8k9 .image_post {
  display: inline-block;
}
.cid-uHpghHE8k9 .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHpghHE8k9 .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHpghHE8k9 .mbr-text,
.cid-uHpghHE8k9 .mbr-section-btn {
  color: #000000;
}
.cid-sk0FdnFMbg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000d20;
}
.cid-sk0FdnFMbg .title_block {
  margin-bottom: 80px;
}
.cid-sk0FdnFMbg .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04dbec;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sk0FdnFMbg .mbr-section-title {
  color: #000d20;
}
.cid-sk0FdnFMbg .card_wrapper {
  padding: 0 35px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0FdnFMbg .card_wrapper:hover .card_title {
  color: #ff0000;
}
.cid-sk0FdnFMbg .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-sk0FdnFMbg .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-sk0FdnFMbg .card_wrapper:hover .shape_2 {
  transform: rotate(345deg);
  top: -20px;
  right: 12px;
}
.cid-sk0FdnFMbg .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-sk0FdnFMbg .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-sk0FdnFMbg .row .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 0, 0, 0.4);
  background-image: linear-gradient(40deg, #ff0000 0%, #ff6666 100%);
}
.cid-sk0FdnFMbg .row .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(17, 255, 136, 0.4);
  background-image: linear-gradient(40deg, #11ff88 0%, #77ffbb 100%);
}
.cid-sk0FdnFMbg .row .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(245, 114, 13, 0.4);
  background-image: linear-gradient(40deg, #f5720d 0%, #f9ab6f 100%);
}
.cid-sk0FdnFMbg .row .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(204, 68, 131, 0.4);
  background-image: linear-gradient(40deg, #cc4483 0%, #e294b8 100%);
}
.cid-sk0FdnFMbg .icon_block {
  margin-bottom: 40px;
}
.cid-sk0FdnFMbg .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-top-right-radius: 0;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cid-sk0FdnFMbg .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sk0FdnFMbg .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0FdnFMbg .card_text {
  margin-bottom: 0;
}
.cid-sk0FdnFMbg .card_link {
  display: block;
  margin-top: 15px;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sk0FdnFMbg .card_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0FdnFMbg .card_link:hover {
  cursor: pointer;
}
.cid-sk0FdnFMbg .card_link:hover a {
  color: #ff0000 !important;
}
.cid-sk0FdnFMbg .card_link:hover span {
  transform: translatex(5px);
}
.cid-sk0FdnFMbg .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-sk0FdnFMbg .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-sk0FdnFMbg .shape_2 {
  top: 0;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-sk0FdnFMbg .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #f5720d;
}
.cid-sk0FdnFMbg .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
.cid-sk0FdnFMbg .mbr-section-btn {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sk0FdnFMbg .title_block {
    margin-bottom: 15px;
  }
  .cid-sk0FdnFMbg .card_wrapper {
    padding: 0 30px;
    max-width: 370px;
    margin: 50px auto 0;
  }
  .cid-sk0FdnFMbg .card_title {
    margin-bottom: 15px;
  }
  .cid-sk0FdnFMbg .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-sk0FdnFMbg .card_title,
.cid-sk0FdnFMbg .icon_block {
  color: #ffffff;
}
.cid-sk0FdnFMbg .card_text,
.cid-sk0FdnFMbg .card_link {
  color: #28395a;
}
.cid-sk0GvbeKL2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sk0GvbeKL2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sk0GvbeKL2 .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-sk0GvbeKL2 .mbr-text {
  margin-bottom: 30px;
}
.cid-sk0GvbeKL2 .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-sk0GvbeKL2 .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-sk0GvbeKL2 .iconfont-wrapper svg #grad_1 {
  stop-color: #ed76ad;
}
.cid-sk0GvbeKL2 .iconfont-wrapper svg #grad_2 {
  stop-color: #f9d0e3;
}
.cid-sk0GvbeKL2 .iconfont-wrapper svg #blur_svg {
  flood-color: #ed76ad;
}
.cid-sk0GvbeKL2 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-sk0GvbeKL2 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sk0GvbeKL2 .text-wrapper {
    text-align: center;
  }
  .cid-sk0GvbeKL2 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sk0GvbeKL2 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sk0GvbeKL2 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sk0GvbeKL2 .card-title,
.cid-sk0GvbeKL2 .icon_block {
  color: #000000;
}
.cid-sk0GvbeKL2 .mbr-text,
.cid-sk0GvbeKL2 .mbr-section-btn {
  color: #000000;
}
.cid-uHoGynixK6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHoGynixK6 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHoGynixK6 .mbr-text {
  color: #ffffff;
}
.cid-uHoGynixK6 .mbr-section-title {
  color: #ffffff;
}
.cid-uHpgcX1xAC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHpgcX1xAC .article-border {
  border-bottom: 2px solid #58b39a;
}
.cid-uHpgcX1xAC .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-uHpgcX1xAC .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uHpgcX1xAC .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-uHpgcX1xAC .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-uHpgcX1xAC .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uHpgcX1xAC .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHpgXweq8Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpgXweq8Y .row {
  justify-content: flex-start;
}
.cid-uHpgXweq8Y .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uHpgXweq8Y .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHpgXweq8Y .mbr-section-title {
  color: #45494E;
}
.cid-uHpgXweq8Y .mbr-section-subtitle {
  color: #45494E;
}
.cid-uHpgXweq8Y .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uHpgXweq8Y .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uHpgXweq8Y .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uHpgXweq8Y .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uHpgXweq8Y .item-content {
    padding-bottom: 10%;
  }
}
.cid-uHpgXweq8Y .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHpgXweq8Y .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uHpgXweq8Y .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-uHpgXweq8Y .mbr-section-btn {
  margin-top: auto;
}
.cid-uHpgXweq8Y .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-uHpgXweq8Y .item-img {
    margin-bottom: 24px;
  }
}
.cid-uHpgXweq8Y .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uHpgXweq8Y .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uHpgXweq8Y .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uHpkWQrw1b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpkWQrw1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpkWQrw1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHpkWQrw1b .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #000d20 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uHpkWQrw1b .card-wrapper {
    padding: 16px;
  }
}
.cid-uHpkWQrw1b .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHpkWQrw1b .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uHpkWQrw1b .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uHpkWQrw1b .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uHpkWQrw1b .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHpkWQrw1b .list {
  color: #ffffff;
  text-align: center;
}
.cid-uHpkWQrw1b .list,
.cid-uHpkWQrw1b .item-wrap,
.cid-uHpkWQrw1b .tabs-wrapper {
  color: #000000;
}
.cid-uHphz0uSER {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHphz0uSER .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHphz0uSER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHphz0uSER .container {
    padding: 0 22px;
  }
}
.cid-uHphz0uSER .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHphz0uSER .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHphz0uSER .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uHphz0uSER .image-wrapper img {
    height: 350px;
  }
}
.cid-uHphz0uSER .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uHphz0uSER .panel-group {
  border-bottom: 1px solid #ffffff;
}
.cid-uHphz0uSER .panel-group .card {
  border-top: 1px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uHphz0uSER .panel-group .card:hover,
.cid-uHphz0uSER .panel-group .card:focus {
  border-top: 1px solid #ffffff;
}
.cid-uHphz0uSER .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHphz0uSER .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uHphz0uSER .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHphz0uSER .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHphz0uSER .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uHphz0uSER .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uHphz0uSER .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uHphz0uSER .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHphz0uSER .panel-title-edit {
  color: #ffffff;
}
.cid-uHphz0uSER .panel-text {
  color: #8a8588;
}
.cid-sk0IqHfMmX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-sk0IqHfMmX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sk0IqHfMmX .mbr-section-title {
  margin-bottom: 20px;
  color: #000000;
}
.cid-sk0IqHfMmX .mbr-text {
  margin-bottom: 50px;
}
.cid-sk0IqHfMmX .card_wrap {
  margin-bottom: 20px;
}
.cid-sk0IqHfMmX .item:nth-child(1) .icon_block svg polygon {
  fill: #fef2e9;
}
.cid-sk0IqHfMmX .item:nth-child(1) .mbr-iconfont {
  color: #f5720d;
}
.cid-sk0IqHfMmX .item:nth-child(2) .icon_block svg polygon {
  fill: #f6dce8;
}
.cid-sk0IqHfMmX .item:nth-child(2) .mbr-iconfont {
  color: #cc4483;
}
.cid-sk0IqHfMmX .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-sk0IqHfMmX .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-sk0IqHfMmX .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-sk0IqHfMmX .card_title {
  margin-bottom: 18px;
  color: #000d20;
}
.cid-sk0IqHfMmX .card_text {
  margin-bottom: 0;
  color: #28395a;
}
.cid-sk0IqHfMmX .mbr-section-btn {
  margin-top: 30px;
}
.cid-sk0IqHfMmX .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-sk0IqHfMmX .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-sk0IqHfMmX .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-sk0IqHfMmX .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #f5720d;
}
.cid-sk0IqHfMmX .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-sk0IqHfMmX .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sk0IqHfMmX .text-wrapper {
    text-align: center;
  }
  .cid-sk0IqHfMmX .card_wrap {
    margin-bottom: 20px;
  }
  .cid-sk0IqHfMmX .icon_block {
    margin-bottom: 20px;
  }
  .cid-sk0IqHfMmX .card_title {
    margin-bottom: 10px;
  }
  .cid-sk0IqHfMmX .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sk0IqHfMmX .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-sk0IqHfMmX .mbr-text,
.cid-sk0IqHfMmX .mbr-section-btn {
  color: #000000;
}
.cid-uHpiQ7kOXX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpiQ7kOXX blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHpiQ7kOXX .mbr-text {
  color: #ffffff;
}
.cid-uHpiQ7kOXX .mbr-section-title {
  color: #ffffff;
}
.cid-uHpjquwDT9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHpjquwDT9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHpjquwDT9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHpjquwDT9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHpjquwDT9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHpjquwDT9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sk0JQp9rXo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-sk0JQp9rXo .footer_col_logo {
  width: 40%;
}
.cid-sk0JQp9rXo .footer_col {
  width: 20%;
}
.cid-sk0JQp9rXo .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sk0JQp9rXo .logo_wrap {
  max-width: 20%;
}
.cid-sk0JQp9rXo .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-sk0JQp9rXo .brand_name {
  color: #ffffff;
}
.cid-sk0JQp9rXo .contacts {
  margin-top: 46px;
}
.cid-sk0JQp9rXo .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-sk0JQp9rXo .contacts b {
  color: #ffffff;
}
.cid-sk0JQp9rXo .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-sk0JQp9rXo .item-wrap {
  line-height: 44px;
}
.cid-sk0JQp9rXo .text-white {
  color: #a99fc5 !important;
}
.cid-sk0JQp9rXo .text-white:hover {
  color: #ffffff !important;
}
.cid-sk0JQp9rXo .item-wrap a,
.cid-sk0JQp9rXo .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0JQp9rXo .item-wrap a:before,
.cid-sk0JQp9rXo .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-sk0JQp9rXo .item-wrap a:hover::before,
.cid-sk0JQp9rXo .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-sk0JQp9rXo .form_wrap {
  display: flex;
}
.cid-sk0JQp9rXo .mbr-form {
  margin-top: 30px;
}
.cid-sk0JQp9rXo .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-sk0JQp9rXo .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-sk0JQp9rXo input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-sk0JQp9rXo .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-sk0JQp9rXo .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-sk0JQp9rXo .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sk0JQp9rXo .footer_col_logo {
    width: 100%;
  }
  .cid-sk0JQp9rXo .footer_col {
    width: 33.3%;
  }
  .cid-sk0JQp9rXo .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-sk0JQp9rXo .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-sk0JQp9rXo .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-sk0JQp9rXo .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-sk0JQp9rXo .row {
    justify-content: center;
    text-align: center;
  }
  .cid-sk0JQp9rXo .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-sk0JQp9rXo .mbr-form .form-group {
    width: 100%;
  }
  .cid-sk0JQp9rXo .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-sk0JQp9rXo .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-sk0JQp9rXo .contacts_mail {
  color: #ffffff;
}
.cid-sk0JQp9rXo .contacts_phone {
  color: #ffffff;
}
.cid-sk0JORQGEy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-sk0JORQGEy .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-sk0JORQGEy .text-white {
  color: #a99fc5 !important;
}
.cid-sk0JORQGEy .text-white:hover {
  color: #ffffff !important;
}
.cid-sk0JORQGEy .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sk0JORQGEy .foot-menu li {
  padding: 10px;
}
.cid-sk0JORQGEy .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sk0JORQGEy .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-sk0JORQGEy .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-sk0JORQGEy .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sk0JORQGEy .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sk0JORQGEy .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-sk0JORQGEy .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-sk0JORQGEy .social-list a:hover {
  opacity: 1;
}
.cid-sk0JORQGEy .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-sk0JORQGEy .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-sk0JORQGEy .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-uHpnVqFMt5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHpnVqFMt5 nav.navbar {
  position: fixed;
}
.cid-uHpnVqFMt5 .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-uHpnVqFMt5 .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-uHpnVqFMt5 .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-uHpnVqFMt5 .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-uHpnVqFMt5 .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-uHpnVqFMt5 .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-uHpnVqFMt5 .dropdown-item:hover,
.cid-uHpnVqFMt5 .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-uHpnVqFMt5 .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-uHpnVqFMt5 .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-uHpnVqFMt5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-uHpnVqFMt5 .nav-link {
  position: relative;
  line-height: 1;
}
.cid-uHpnVqFMt5 .nav-link:hover {
  color: #ff0000 !important;
}
.cid-uHpnVqFMt5 .container {
  display: flex;
  margin: auto;
}
.cid-uHpnVqFMt5 .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-uHpnVqFMt5 .dropdown-menu,
.cid-uHpnVqFMt5 .navbar.opened {
  background: #000d20 !important;
}
.cid-uHpnVqFMt5 .nav-item:focus,
.cid-uHpnVqFMt5 .nav-link:focus {
  outline: none;
}
.cid-uHpnVqFMt5 .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-uHpnVqFMt5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHpnVqFMt5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHpnVqFMt5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHpnVqFMt5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHpnVqFMt5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHpnVqFMt5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-uHpnVqFMt5 .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-uHpnVqFMt5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHpnVqFMt5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHpnVqFMt5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uHpnVqFMt5 .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-uHpnVqFMt5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uHpnVqFMt5 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uHpnVqFMt5 .navbar.collapsed {
  justify-content: center;
}
.cid-uHpnVqFMt5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHpnVqFMt5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHpnVqFMt5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHpnVqFMt5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHpnVqFMt5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHpnVqFMt5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-uHpnVqFMt5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHpnVqFMt5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHpnVqFMt5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHpnVqFMt5 .navbar .dropdown-menu {
    display: none;
  }
  .cid-uHpnVqFMt5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHpnVqFMt5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHpnVqFMt5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-uHpnVqFMt5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHpnVqFMt5 .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-uHpnVqFMt5 .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-uHpnVqFMt5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHpnVqFMt5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHpnVqFMt5 .navbar .navbar-buttons,
  .cid-uHpnVqFMt5 .navbar .icons-menu {
    display: none;
  }
  .cid-uHpnVqFMt5 .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-uHpnVqFMt5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHpnVqFMt5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHpnVqFMt5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHpnVqFMt5 .dropdown-item.active,
.cid-uHpnVqFMt5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHpnVqFMt5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHpnVqFMt5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-uHpnVqFMt5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHpnVqFMt5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHpnVqFMt5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHpnVqFMt5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHpnVqFMt5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHpnVqFMt5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHpnVqFMt5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpnVqFMt5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpnVqFMt5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHpnVqFMt5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpnVqFMt5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHpnVqFMt5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHpnVqFMt5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpnVqFMt5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHpnVqFMt5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uHpnVqFMt5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHpnVqFMt5 .navbar {
    height: 70px;
  }
  .cid-uHpnVqFMt5 .navbar.opened {
    height: auto;
  }
  .cid-uHpnVqFMt5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHpnVtbL1a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-uHpnVtbL1a .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-uHpnVtbL1a .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-uHpnVtbL1a .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpnVtbL1a .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-uHpnVtbL1a .mbr-section-btn {
  display: inline-block;
}
.cid-uHpnVtbL1a .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-uHpnVtbL1a .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpnVtbL1a .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-uHpnVtbL1a .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-uHpnVtbL1a .btn_link:hover {
  cursor: pointer;
}
.cid-uHpnVtbL1a .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpnVtbL1a .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-uHpnVtbL1a .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-uHpnVtbL1a .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-uHpnVtbL1a .head_block {
    order: 1;
    text-align: center;
  }
  .cid-uHpnVtbL1a .image_img {
    margin-bottom: 40px;
  }
  .cid-uHpnVtbL1a .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-uHpnVtbL1a .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpnVtbL1a .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
}
.cid-uHpnVtbL1a .mbr-text,
.cid-uHpnVtbL1a .buttons_wrap {
  color: #ffffff;
}
.cid-uHpnVw0lls {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpnVw0lls .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHpnVw0lls .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHpnVw0lls .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHpnVw0lls .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHpnVw0lls .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHpnVw0lls .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHpnVw0lls .mbr-section-btn .btn-secondary-outline .active,
.cid-uHpnVw0lls .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHpnVw0lls .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHpnVw0lls .image_post {
  display: inline-block;
}
.cid-uHpnVw0lls .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHpnVw0lls .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHpnVw0lls .mbr-text,
.cid-uHpnVw0lls .mbr-section-btn {
  color: #000000;
}
.cid-uHpnVI4mhW {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHpnVI4mhW .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHpnVI4mhW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHpnVI4mhW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHpnVI4mhW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHpnVI4mhW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHpnVIZurr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpnVIZurr .footer_col_logo {
  width: 40%;
}
.cid-uHpnVIZurr .footer_col {
  width: 20%;
}
.cid-uHpnVIZurr .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uHpnVIZurr .logo_wrap {
  max-width: 20%;
}
.cid-uHpnVIZurr .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-uHpnVIZurr .brand_name {
  color: #ffffff;
}
.cid-uHpnVIZurr .contacts {
  margin-top: 46px;
}
.cid-uHpnVIZurr .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-uHpnVIZurr .contacts b {
  color: #ffffff;
}
.cid-uHpnVIZurr .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-uHpnVIZurr .item-wrap {
  line-height: 44px;
}
.cid-uHpnVIZurr .text-white {
  color: #a99fc5 !important;
}
.cid-uHpnVIZurr .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpnVIZurr .item-wrap a,
.cid-uHpnVIZurr .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpnVIZurr .item-wrap a:before,
.cid-uHpnVIZurr .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpnVIZurr .item-wrap a:hover::before,
.cid-uHpnVIZurr .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpnVIZurr .form_wrap {
  display: flex;
}
.cid-uHpnVIZurr .mbr-form {
  margin-top: 30px;
}
.cid-uHpnVIZurr .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpnVIZurr .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpnVIZurr input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpnVIZurr .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-uHpnVIZurr .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uHpnVIZurr .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uHpnVIZurr .footer_col_logo {
    width: 100%;
  }
  .cid-uHpnVIZurr .footer_col {
    width: 33.3%;
  }
  .cid-uHpnVIZurr .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-uHpnVIZurr .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-uHpnVIZurr .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uHpnVIZurr .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uHpnVIZurr .row {
    justify-content: center;
    text-align: center;
  }
  .cid-uHpnVIZurr .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-uHpnVIZurr .mbr-form .form-group {
    width: 100%;
  }
  .cid-uHpnVIZurr .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-uHpnVIZurr .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-uHpnVIZurr .contacts_mail {
  color: #ffffff;
}
.cid-uHpnVIZurr .contacts_phone {
  color: #ffffff;
}
.cid-uHpnVK120Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-uHpnVK120Q .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-uHpnVK120Q .text-white {
  color: #a99fc5 !important;
}
.cid-uHpnVK120Q .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpnVK120Q .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpnVK120Q .foot-menu li {
  padding: 10px;
}
.cid-uHpnVK120Q .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpnVK120Q .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpnVK120Q .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpnVK120Q .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHpnVK120Q .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-uHpnVK120Q .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-uHpnVK120Q .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-uHpnVK120Q .social-list a:hover {
  opacity: 1;
}
.cid-uHpnVK120Q .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-uHpnVK120Q .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-uHpnVK120Q .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-uHpoOhstfi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHpoOhstfi nav.navbar {
  position: fixed;
}
.cid-uHpoOhstfi .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-uHpoOhstfi .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-uHpoOhstfi .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-uHpoOhstfi .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-uHpoOhstfi .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-uHpoOhstfi .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-uHpoOhstfi .dropdown-item:hover,
.cid-uHpoOhstfi .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-uHpoOhstfi .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-uHpoOhstfi .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-uHpoOhstfi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-uHpoOhstfi .nav-link {
  position: relative;
  line-height: 1;
}
.cid-uHpoOhstfi .nav-link:hover {
  color: #ff0000 !important;
}
.cid-uHpoOhstfi .container {
  display: flex;
  margin: auto;
}
.cid-uHpoOhstfi .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-uHpoOhstfi .dropdown-menu,
.cid-uHpoOhstfi .navbar.opened {
  background: #000d20 !important;
}
.cid-uHpoOhstfi .nav-item:focus,
.cid-uHpoOhstfi .nav-link:focus {
  outline: none;
}
.cid-uHpoOhstfi .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-uHpoOhstfi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHpoOhstfi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHpoOhstfi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHpoOhstfi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHpoOhstfi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHpoOhstfi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-uHpoOhstfi .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-uHpoOhstfi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHpoOhstfi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHpoOhstfi .navbar.opened {
  transition: all 0.3s;
}
.cid-uHpoOhstfi .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-uHpoOhstfi .navbar .navbar-logo img {
  width: auto;
}
.cid-uHpoOhstfi .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uHpoOhstfi .navbar.collapsed {
  justify-content: center;
}
.cid-uHpoOhstfi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHpoOhstfi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHpoOhstfi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHpoOhstfi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHpoOhstfi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHpoOhstfi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-uHpoOhstfi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHpoOhstfi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHpoOhstfi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHpoOhstfi .navbar .dropdown-menu {
    display: none;
  }
  .cid-uHpoOhstfi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHpoOhstfi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHpoOhstfi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-uHpoOhstfi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHpoOhstfi .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-uHpoOhstfi .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-uHpoOhstfi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHpoOhstfi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHpoOhstfi .navbar .navbar-buttons,
  .cid-uHpoOhstfi .navbar .icons-menu {
    display: none;
  }
  .cid-uHpoOhstfi .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-uHpoOhstfi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHpoOhstfi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHpoOhstfi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHpoOhstfi .dropdown-item.active,
.cid-uHpoOhstfi .dropdown-item:active {
  background-color: transparent;
}
.cid-uHpoOhstfi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHpoOhstfi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-uHpoOhstfi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHpoOhstfi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHpoOhstfi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHpoOhstfi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHpoOhstfi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHpoOhstfi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHpoOhstfi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpoOhstfi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpoOhstfi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHpoOhstfi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpoOhstfi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHpoOhstfi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHpoOhstfi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpoOhstfi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHpoOhstfi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uHpoOhstfi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHpoOhstfi .navbar {
    height: 70px;
  }
  .cid-uHpoOhstfi .navbar.opened {
    height: auto;
  }
  .cid-uHpoOhstfi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHpoOj86sI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-uHpoOj86sI .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-uHpoOj86sI .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-uHpoOj86sI .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpoOj86sI .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-uHpoOj86sI .mbr-section-btn {
  display: inline-block;
}
.cid-uHpoOj86sI .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-uHpoOj86sI .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpoOj86sI .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-uHpoOj86sI .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-uHpoOj86sI .btn_link:hover {
  cursor: pointer;
}
.cid-uHpoOj86sI .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpoOj86sI .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-uHpoOj86sI .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-uHpoOj86sI .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-uHpoOj86sI .head_block {
    order: 1;
    text-align: center;
  }
  .cid-uHpoOj86sI .image_img {
    margin-bottom: 40px;
  }
  .cid-uHpoOj86sI .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-uHpoOj86sI .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpoOj86sI .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
}
.cid-uHpoOj86sI .mbr-text,
.cid-uHpoOj86sI .buttons_wrap {
  color: #ffffff;
}
.cid-uHpoOkNipl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpoOkNipl .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHpoOkNipl .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHpoOkNipl .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHpoOkNipl .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHpoOkNipl .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHpoOkNipl .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHpoOkNipl .mbr-section-btn .btn-secondary-outline .active,
.cid-uHpoOkNipl .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHpoOkNipl .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHpoOkNipl .image_post {
  display: inline-block;
}
.cid-uHpoOkNipl .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHpoOkNipl .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHpoOkNipl .mbr-text,
.cid-uHpoOkNipl .mbr-section-btn {
  color: #000000;
}
.cid-uHpoOlSyY3 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHpoOlSyY3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHpoOlSyY3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHpoOlSyY3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHpoOlSyY3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHpoOlSyY3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHpoOmWQS9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpoOmWQS9 .footer_col_logo {
  width: 40%;
}
.cid-uHpoOmWQS9 .footer_col {
  width: 20%;
}
.cid-uHpoOmWQS9 .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uHpoOmWQS9 .logo_wrap {
  max-width: 20%;
}
.cid-uHpoOmWQS9 .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-uHpoOmWQS9 .brand_name {
  color: #ffffff;
}
.cid-uHpoOmWQS9 .contacts {
  margin-top: 46px;
}
.cid-uHpoOmWQS9 .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-uHpoOmWQS9 .contacts b {
  color: #ffffff;
}
.cid-uHpoOmWQS9 .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-uHpoOmWQS9 .item-wrap {
  line-height: 44px;
}
.cid-uHpoOmWQS9 .text-white {
  color: #a99fc5 !important;
}
.cid-uHpoOmWQS9 .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpoOmWQS9 .item-wrap a,
.cid-uHpoOmWQS9 .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpoOmWQS9 .item-wrap a:before,
.cid-uHpoOmWQS9 .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpoOmWQS9 .item-wrap a:hover::before,
.cid-uHpoOmWQS9 .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpoOmWQS9 .form_wrap {
  display: flex;
}
.cid-uHpoOmWQS9 .mbr-form {
  margin-top: 30px;
}
.cid-uHpoOmWQS9 .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpoOmWQS9 .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpoOmWQS9 input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpoOmWQS9 .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-uHpoOmWQS9 .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uHpoOmWQS9 .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uHpoOmWQS9 .footer_col_logo {
    width: 100%;
  }
  .cid-uHpoOmWQS9 .footer_col {
    width: 33.3%;
  }
  .cid-uHpoOmWQS9 .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-uHpoOmWQS9 .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-uHpoOmWQS9 .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uHpoOmWQS9 .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uHpoOmWQS9 .row {
    justify-content: center;
    text-align: center;
  }
  .cid-uHpoOmWQS9 .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-uHpoOmWQS9 .mbr-form .form-group {
    width: 100%;
  }
  .cid-uHpoOmWQS9 .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-uHpoOmWQS9 .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-uHpoOmWQS9 .contacts_mail {
  color: #ffffff;
}
.cid-uHpoOmWQS9 .contacts_phone {
  color: #ffffff;
}
.cid-uHpoOo6j9u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-uHpoOo6j9u .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-uHpoOo6j9u .text-white {
  color: #a99fc5 !important;
}
.cid-uHpoOo6j9u .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpoOo6j9u .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpoOo6j9u .foot-menu li {
  padding: 10px;
}
.cid-uHpoOo6j9u .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpoOo6j9u .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpoOo6j9u .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpoOo6j9u .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHpoOo6j9u .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-uHpoOo6j9u .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-uHpoOo6j9u .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-uHpoOo6j9u .social-list a:hover {
  opacity: 1;
}
.cid-uHpoOo6j9u .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-uHpoOo6j9u .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-uHpoOo6j9u .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-uHpqfeOiOa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHpqfeOiOa nav.navbar {
  position: fixed;
}
.cid-uHpqfeOiOa .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-uHpqfeOiOa .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-uHpqfeOiOa .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-uHpqfeOiOa .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-uHpqfeOiOa .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-uHpqfeOiOa .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-uHpqfeOiOa .dropdown-item:hover,
.cid-uHpqfeOiOa .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-uHpqfeOiOa .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-uHpqfeOiOa .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-uHpqfeOiOa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-uHpqfeOiOa .nav-link {
  position: relative;
  line-height: 1;
}
.cid-uHpqfeOiOa .nav-link:hover {
  color: #ff0000 !important;
}
.cid-uHpqfeOiOa .container {
  display: flex;
  margin: auto;
}
.cid-uHpqfeOiOa .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-uHpqfeOiOa .dropdown-menu,
.cid-uHpqfeOiOa .navbar.opened {
  background: #000d20 !important;
}
.cid-uHpqfeOiOa .nav-item:focus,
.cid-uHpqfeOiOa .nav-link:focus {
  outline: none;
}
.cid-uHpqfeOiOa .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-uHpqfeOiOa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHpqfeOiOa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHpqfeOiOa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHpqfeOiOa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHpqfeOiOa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHpqfeOiOa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-uHpqfeOiOa .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-uHpqfeOiOa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHpqfeOiOa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHpqfeOiOa .navbar.opened {
  transition: all 0.3s;
}
.cid-uHpqfeOiOa .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-uHpqfeOiOa .navbar .navbar-logo img {
  width: auto;
}
.cid-uHpqfeOiOa .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uHpqfeOiOa .navbar.collapsed {
  justify-content: center;
}
.cid-uHpqfeOiOa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHpqfeOiOa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHpqfeOiOa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHpqfeOiOa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHpqfeOiOa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHpqfeOiOa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-uHpqfeOiOa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHpqfeOiOa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHpqfeOiOa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHpqfeOiOa .navbar .dropdown-menu {
    display: none;
  }
  .cid-uHpqfeOiOa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHpqfeOiOa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHpqfeOiOa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-uHpqfeOiOa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHpqfeOiOa .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-uHpqfeOiOa .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-uHpqfeOiOa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHpqfeOiOa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHpqfeOiOa .navbar .navbar-buttons,
  .cid-uHpqfeOiOa .navbar .icons-menu {
    display: none;
  }
  .cid-uHpqfeOiOa .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-uHpqfeOiOa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHpqfeOiOa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHpqfeOiOa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHpqfeOiOa .dropdown-item.active,
.cid-uHpqfeOiOa .dropdown-item:active {
  background-color: transparent;
}
.cid-uHpqfeOiOa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHpqfeOiOa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-uHpqfeOiOa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHpqfeOiOa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHpqfeOiOa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHpqfeOiOa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHpqfeOiOa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHpqfeOiOa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHpqfeOiOa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpqfeOiOa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpqfeOiOa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHpqfeOiOa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpqfeOiOa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHpqfeOiOa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHpqfeOiOa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpqfeOiOa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHpqfeOiOa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uHpqfeOiOa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHpqfeOiOa .navbar {
    height: 70px;
  }
  .cid-uHpqfeOiOa .navbar.opened {
    height: auto;
  }
  .cid-uHpqfeOiOa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHpqffV43Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-uHpqffV43Q .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-uHpqffV43Q .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-uHpqffV43Q .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpqffV43Q .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-uHpqffV43Q .mbr-section-btn {
  display: inline-block;
}
.cid-uHpqffV43Q .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-uHpqffV43Q .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqffV43Q .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-uHpqffV43Q .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-uHpqffV43Q .btn_link:hover {
  cursor: pointer;
}
.cid-uHpqffV43Q .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpqffV43Q .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-uHpqffV43Q .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-uHpqffV43Q .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-uHpqffV43Q .head_block {
    order: 1;
    text-align: center;
  }
  .cid-uHpqffV43Q .image_img {
    margin-bottom: 40px;
  }
  .cid-uHpqffV43Q .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-uHpqffV43Q .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpqffV43Q .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
}
.cid-uHpqffV43Q .mbr-text,
.cid-uHpqffV43Q .buttons_wrap {
  color: #ffffff;
}
.cid-uHpqfgQYIc {
  background-color: #000d20 !important;
  border: 18px solid #000d20;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-uHpqfgQYIc {
    border: 8px solid #000d20;
    margin-top: -8px;
  }
}
.cid-uHpqfgQYIc .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uHpqfgQYIc section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-uHpqfgQYIc .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHpqfgQYIc .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpqfgQYIc .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpqfgQYIc .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uHpqfgQYIc .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHpqfgQYIc .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHpqfgQYIc .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uHpqfgQYIc .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHpqfgQYIc .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-uHpqfgQYIc .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uHpqfgQYIc .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #155e9b;
}
.cid-uHpqfgQYIc .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHpqfgQYIc .image-wrapper {
    height: auto;
  }
}
.cid-uHpqfgQYIc .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uHpqfgQYIc .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-uHpqfgQYIc .mbr-section-title {
  color: #ed2c03;
}
.cid-uHpqfgQYIc .list {
  color: #000000;
}
.cid-uHpqfhCfZ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpqfhCfZ6 .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHpqfhCfZ6 .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHpqfhCfZ6 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHpqfhCfZ6 .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHpqfhCfZ6 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHpqfhCfZ6 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHpqfhCfZ6 .mbr-section-btn .btn-secondary-outline .active,
.cid-uHpqfhCfZ6 .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHpqfhCfZ6 .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHpqfhCfZ6 .image_post {
  display: inline-block;
}
.cid-uHpqfhCfZ6 .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHpqfhCfZ6 .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHpqfhCfZ6 .mbr-text,
.cid-uHpqfhCfZ6 .mbr-section-btn {
  color: #000000;
}
.cid-uHpqfiyMU0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000d20;
}
.cid-uHpqfiyMU0 .title_block {
  margin-bottom: 80px;
}
.cid-uHpqfiyMU0 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04dbec;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpqfiyMU0 .mbr-section-title {
  color: #000d20;
}
.cid-uHpqfiyMU0 .card_wrapper {
  padding: 0 35px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqfiyMU0 .card_wrapper:hover .card_title {
  color: #ff0000;
}
.cid-uHpqfiyMU0 .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-uHpqfiyMU0 .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-uHpqfiyMU0 .card_wrapper:hover .shape_2 {
  transform: rotate(345deg);
  top: -20px;
  right: 12px;
}
.cid-uHpqfiyMU0 .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-uHpqfiyMU0 .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-uHpqfiyMU0 .row .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 0, 0, 0.4);
  background-image: linear-gradient(40deg, #ff0000 0%, #ff6666 100%);
}
.cid-uHpqfiyMU0 .row .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(17, 255, 136, 0.4);
  background-image: linear-gradient(40deg, #11ff88 0%, #77ffbb 100%);
}
.cid-uHpqfiyMU0 .row .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(245, 114, 13, 0.4);
  background-image: linear-gradient(40deg, #f5720d 0%, #f9ab6f 100%);
}
.cid-uHpqfiyMU0 .row .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(204, 68, 131, 0.4);
  background-image: linear-gradient(40deg, #cc4483 0%, #e294b8 100%);
}
.cid-uHpqfiyMU0 .icon_block {
  margin-bottom: 40px;
}
.cid-uHpqfiyMU0 .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-top-right-radius: 0;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cid-uHpqfiyMU0 .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-uHpqfiyMU0 .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqfiyMU0 .card_text {
  margin-bottom: 0;
}
.cid-uHpqfiyMU0 .card_link {
  display: block;
  margin-top: 15px;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uHpqfiyMU0 .card_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqfiyMU0 .card_link:hover {
  cursor: pointer;
}
.cid-uHpqfiyMU0 .card_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpqfiyMU0 .card_link:hover span {
  transform: translatex(5px);
}
.cid-uHpqfiyMU0 .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHpqfiyMU0 .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHpqfiyMU0 .shape_2 {
  top: 0;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-uHpqfiyMU0 .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #f5720d;
}
.cid-uHpqfiyMU0 .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
.cid-uHpqfiyMU0 .mbr-section-btn {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHpqfiyMU0 .title_block {
    margin-bottom: 15px;
  }
  .cid-uHpqfiyMU0 .card_wrapper {
    padding: 0 30px;
    max-width: 370px;
    margin: 50px auto 0;
  }
  .cid-uHpqfiyMU0 .card_title {
    margin-bottom: 15px;
  }
  .cid-uHpqfiyMU0 .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uHpqfiyMU0 .card_title,
.cid-uHpqfiyMU0 .icon_block {
  color: #ffffff;
}
.cid-uHpqfiyMU0 .card_text,
.cid-uHpqfiyMU0 .card_link {
  color: #28395a;
}
.cid-uHpqfk0OQp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpqfk0OQp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHpqfk0OQp .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-uHpqfk0OQp .mbr-text {
  margin-bottom: 30px;
}
.cid-uHpqfk0OQp .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-uHpqfk0OQp .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-uHpqfk0OQp .iconfont-wrapper svg #grad_1 {
  stop-color: #ed76ad;
}
.cid-uHpqfk0OQp .iconfont-wrapper svg #grad_2 {
  stop-color: #f9d0e3;
}
.cid-uHpqfk0OQp .iconfont-wrapper svg #blur_svg {
  flood-color: #ed76ad;
}
.cid-uHpqfk0OQp .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-uHpqfk0OQp .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHpqfk0OQp .text-wrapper {
    text-align: center;
  }
  .cid-uHpqfk0OQp .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHpqfk0OQp .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpqfk0OQp .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHpqfk0OQp .card-title,
.cid-uHpqfk0OQp .icon_block {
  color: #000000;
}
.cid-uHpqfk0OQp .mbr-text,
.cid-uHpqfk0OQp .mbr-section-btn {
  color: #000000;
}
.cid-uHpqfl8SH9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpqfl8SH9 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHpqfl8SH9 .mbr-text {
  color: #ffffff;
}
.cid-uHpqfl8SH9 .mbr-section-title {
  color: #ffffff;
}
.cid-uHpB9zjK22 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpB9zjK22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpB9zjK22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpB9zjK22 .container {
    padding: 0 20px;
  }
}
.cid-uHpB9zjK22 .row {
  margin: 0;
}
.cid-uHpB9zjK22 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uHpB9zjK22 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHpB9zjK22 .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uHpB9zjK22 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uHpB9zjK22 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uHpB9zjK22 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uHpB9zjK22 .mbr-section-title {
  color: #ffffff;
}
.cid-uHpqflLbf9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHpqflLbf9 .article-border {
  border-bottom: 2px solid #58b39a;
}
.cid-uHpqflLbf9 .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-uHpqflLbf9 .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uHpqflLbf9 .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-uHpqflLbf9 .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-uHpqflLbf9 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uHpqflLbf9 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHpqfmqQAy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpqfmqQAy .row {
  justify-content: flex-start;
}
.cid-uHpqfmqQAy .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uHpqfmqQAy .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHpqfmqQAy .mbr-section-title {
  color: #45494E;
}
.cid-uHpqfmqQAy .mbr-section-subtitle {
  color: #45494E;
}
.cid-uHpqfmqQAy .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uHpqfmqQAy .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uHpqfmqQAy .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uHpqfmqQAy .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uHpqfmqQAy .item-content {
    padding-bottom: 10%;
  }
}
.cid-uHpqfmqQAy .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHpqfmqQAy .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uHpqfmqQAy .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-uHpqfmqQAy .mbr-section-btn {
  margin-top: auto;
}
.cid-uHpqfmqQAy .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-uHpqfmqQAy .item-img {
    margin-bottom: 24px;
  }
}
.cid-uHpqfmqQAy .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uHpqfmqQAy .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uHpqfmqQAy .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uHpqfned2t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpqfned2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpqfned2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHpqfned2t .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #000d20 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uHpqfned2t .card-wrapper {
    padding: 16px;
  }
}
.cid-uHpqfned2t .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHpqfned2t .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uHpqfned2t .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uHpqfned2t .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uHpqfned2t .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHpqfned2t .list {
  color: #ffffff;
  text-align: center;
}
.cid-uHpqfned2t .list,
.cid-uHpqfned2t .item-wrap,
.cid-uHpqfned2t .tabs-wrapper {
  color: #000000;
}
.cid-uHpqfo2pPK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpqfo2pPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpqfo2pPK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpqfo2pPK .container {
    padding: 0 22px;
  }
}
.cid-uHpqfo2pPK .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHpqfo2pPK .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHpqfo2pPK .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uHpqfo2pPK .image-wrapper img {
    height: 350px;
  }
}
.cid-uHpqfo2pPK .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uHpqfo2pPK .panel-group {
  border-bottom: 1px solid #ffffff;
}
.cid-uHpqfo2pPK .panel-group .card {
  border-top: 1px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uHpqfo2pPK .panel-group .card:hover,
.cid-uHpqfo2pPK .panel-group .card:focus {
  border-top: 1px solid #ffffff;
}
.cid-uHpqfo2pPK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHpqfo2pPK .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uHpqfo2pPK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHpqfo2pPK .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHpqfo2pPK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uHpqfo2pPK .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uHpqfo2pPK .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uHpqfo2pPK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHpqfo2pPK .panel-title-edit {
  color: #ffffff;
}
.cid-uHpqfo2pPK .panel-text {
  color: #8a8588;
}
.cid-uHpqfp7be3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uHpqfp7be3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHpqfp7be3 .mbr-section-title {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uHpqfp7be3 .mbr-text {
  margin-bottom: 50px;
}
.cid-uHpqfp7be3 .card_wrap {
  margin-bottom: 20px;
}
.cid-uHpqfp7be3 .item:nth-child(1) .icon_block svg polygon {
  fill: #fef2e9;
}
.cid-uHpqfp7be3 .item:nth-child(1) .mbr-iconfont {
  color: #f5720d;
}
.cid-uHpqfp7be3 .item:nth-child(2) .icon_block svg polygon {
  fill: #f6dce8;
}
.cid-uHpqfp7be3 .item:nth-child(2) .mbr-iconfont {
  color: #cc4483;
}
.cid-uHpqfp7be3 .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-uHpqfp7be3 .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-uHpqfp7be3 .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-uHpqfp7be3 .card_title {
  margin-bottom: 18px;
  color: #000d20;
}
.cid-uHpqfp7be3 .card_text {
  margin-bottom: 0;
  color: #28395a;
}
.cid-uHpqfp7be3 .mbr-section-btn {
  margin-top: 30px;
}
.cid-uHpqfp7be3 .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHpqfp7be3 .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHpqfp7be3 .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-uHpqfp7be3 .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #f5720d;
}
.cid-uHpqfp7be3 .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-uHpqfp7be3 .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHpqfp7be3 .text-wrapper {
    text-align: center;
  }
  .cid-uHpqfp7be3 .card_wrap {
    margin-bottom: 20px;
  }
  .cid-uHpqfp7be3 .icon_block {
    margin-bottom: 20px;
  }
  .cid-uHpqfp7be3 .card_title {
    margin-bottom: 10px;
  }
  .cid-uHpqfp7be3 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHpqfp7be3 .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-uHpqfp7be3 .mbr-text,
.cid-uHpqfp7be3 .mbr-section-btn {
  color: #000000;
}
.cid-uHpqfpZ6Yv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpqfpZ6Yv blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHpqfpZ6Yv .mbr-text {
  color: #ffffff;
}
.cid-uHpqfpZ6Yv .mbr-section-title {
  color: #ffffff;
}
.cid-uHpsHaMWhZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpsHaMWhZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpsHaMWhZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpsHaMWhZ .container {
    padding: 0 22px;
  }
}
.cid-uHpsHaMWhZ .row {
  justify-content: center;
}
.cid-uHpsHaMWhZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHpsHaMWhZ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHpsHaMWhZ .panel-group .card {
  border-radius: 0 !important;
}
.cid-uHpsHaMWhZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  padding: 20px;
}
.cid-uHpsHaMWhZ .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHpsHaMWhZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHpsHaMWhZ .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHpsHaMWhZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uHpsHaMWhZ .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-uHpsHaMWhZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHpsHaMWhZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHpsHaMWhZ .panel-title-edit {
  color: #000000;
}
.cid-uHpsHaMWhZ .panel-text {
  color: #000000;
}
.cid-uHpqfqEMnG {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHpqfqEMnG .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHpqfqEMnG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHpqfqEMnG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHpqfqEMnG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHpqfqEMnG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHpqfrBKLm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpqfrBKLm .footer_col_logo {
  width: 40%;
}
.cid-uHpqfrBKLm .footer_col {
  width: 20%;
}
.cid-uHpqfrBKLm .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uHpqfrBKLm .logo_wrap {
  max-width: 20%;
}
.cid-uHpqfrBKLm .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-uHpqfrBKLm .brand_name {
  color: #ffffff;
}
.cid-uHpqfrBKLm .contacts {
  margin-top: 46px;
}
.cid-uHpqfrBKLm .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-uHpqfrBKLm .contacts b {
  color: #ffffff;
}
.cid-uHpqfrBKLm .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-uHpqfrBKLm .item-wrap {
  line-height: 44px;
}
.cid-uHpqfrBKLm .text-white {
  color: #a99fc5 !important;
}
.cid-uHpqfrBKLm .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpqfrBKLm .item-wrap a,
.cid-uHpqfrBKLm .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqfrBKLm .item-wrap a:before,
.cid-uHpqfrBKLm .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpqfrBKLm .item-wrap a:hover::before,
.cid-uHpqfrBKLm .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpqfrBKLm .form_wrap {
  display: flex;
}
.cid-uHpqfrBKLm .mbr-form {
  margin-top: 30px;
}
.cid-uHpqfrBKLm .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpqfrBKLm .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpqfrBKLm input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpqfrBKLm .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-uHpqfrBKLm .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uHpqfrBKLm .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uHpqfrBKLm .footer_col_logo {
    width: 100%;
  }
  .cid-uHpqfrBKLm .footer_col {
    width: 33.3%;
  }
  .cid-uHpqfrBKLm .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-uHpqfrBKLm .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-uHpqfrBKLm .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uHpqfrBKLm .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uHpqfrBKLm .row {
    justify-content: center;
    text-align: center;
  }
  .cid-uHpqfrBKLm .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-uHpqfrBKLm .mbr-form .form-group {
    width: 100%;
  }
  .cid-uHpqfrBKLm .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-uHpqfrBKLm .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-uHpqfrBKLm .contacts_mail {
  color: #ffffff;
}
.cid-uHpqfrBKLm .contacts_phone {
  color: #ffffff;
}
.cid-uHpqfsIRCw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-uHpqfsIRCw .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-uHpqfsIRCw .text-white {
  color: #a99fc5 !important;
}
.cid-uHpqfsIRCw .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpqfsIRCw .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpqfsIRCw .foot-menu li {
  padding: 10px;
}
.cid-uHpqfsIRCw .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpqfsIRCw .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpqfsIRCw .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpqfsIRCw .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHpqfsIRCw .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-uHpqfsIRCw .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-uHpqfsIRCw .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-uHpqfsIRCw .social-list a:hover {
  opacity: 1;
}
.cid-uHpqfsIRCw .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-uHpqfsIRCw .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-uHpqfsIRCw .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-uHptp4Kqdn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHptp4Kqdn nav.navbar {
  position: fixed;
}
.cid-uHptp4Kqdn .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-uHptp4Kqdn .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-uHptp4Kqdn .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-uHptp4Kqdn .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-uHptp4Kqdn .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-uHptp4Kqdn .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-uHptp4Kqdn .dropdown-item:hover,
.cid-uHptp4Kqdn .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-uHptp4Kqdn .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-uHptp4Kqdn .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-uHptp4Kqdn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-uHptp4Kqdn .nav-link {
  position: relative;
  line-height: 1;
}
.cid-uHptp4Kqdn .nav-link:hover {
  color: #ff0000 !important;
}
.cid-uHptp4Kqdn .container {
  display: flex;
  margin: auto;
}
.cid-uHptp4Kqdn .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-uHptp4Kqdn .dropdown-menu,
.cid-uHptp4Kqdn .navbar.opened {
  background: #000d20 !important;
}
.cid-uHptp4Kqdn .nav-item:focus,
.cid-uHptp4Kqdn .nav-link:focus {
  outline: none;
}
.cid-uHptp4Kqdn .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-uHptp4Kqdn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHptp4Kqdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHptp4Kqdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHptp4Kqdn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHptp4Kqdn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHptp4Kqdn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-uHptp4Kqdn .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-uHptp4Kqdn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHptp4Kqdn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHptp4Kqdn .navbar.opened {
  transition: all 0.3s;
}
.cid-uHptp4Kqdn .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-uHptp4Kqdn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHptp4Kqdn .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uHptp4Kqdn .navbar.collapsed {
  justify-content: center;
}
.cid-uHptp4Kqdn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHptp4Kqdn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHptp4Kqdn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHptp4Kqdn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHptp4Kqdn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHptp4Kqdn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-uHptp4Kqdn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHptp4Kqdn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHptp4Kqdn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHptp4Kqdn .navbar .dropdown-menu {
    display: none;
  }
  .cid-uHptp4Kqdn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHptp4Kqdn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHptp4Kqdn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-uHptp4Kqdn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHptp4Kqdn .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-uHptp4Kqdn .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-uHptp4Kqdn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHptp4Kqdn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHptp4Kqdn .navbar .navbar-buttons,
  .cid-uHptp4Kqdn .navbar .icons-menu {
    display: none;
  }
  .cid-uHptp4Kqdn .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-uHptp4Kqdn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHptp4Kqdn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHptp4Kqdn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHptp4Kqdn .dropdown-item.active,
.cid-uHptp4Kqdn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHptp4Kqdn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHptp4Kqdn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-uHptp4Kqdn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHptp4Kqdn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHptp4Kqdn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHptp4Kqdn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHptp4Kqdn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHptp4Kqdn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHptp4Kqdn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHptp4Kqdn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHptp4Kqdn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHptp4Kqdn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHptp4Kqdn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHptp4Kqdn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHptp4Kqdn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHptp4Kqdn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHptp4Kqdn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uHptp4Kqdn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHptp4Kqdn .navbar {
    height: 70px;
  }
  .cid-uHptp4Kqdn .navbar.opened {
    height: auto;
  }
  .cid-uHptp4Kqdn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHptp7hPFu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-uHptp7hPFu .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-uHptp7hPFu .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-uHptp7hPFu .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHptp7hPFu .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-uHptp7hPFu .mbr-section-btn {
  display: inline-block;
}
.cid-uHptp7hPFu .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-uHptp7hPFu .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptp7hPFu .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-uHptp7hPFu .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-uHptp7hPFu .btn_link:hover {
  cursor: pointer;
}
.cid-uHptp7hPFu .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-uHptp7hPFu .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-uHptp7hPFu .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-uHptp7hPFu .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-uHptp7hPFu .head_block {
    order: 1;
    text-align: center;
  }
  .cid-uHptp7hPFu .image_img {
    margin-bottom: 40px;
  }
  .cid-uHptp7hPFu .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-uHptp7hPFu .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHptp7hPFu .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
}
.cid-uHptp7hPFu .mbr-text,
.cid-uHptp7hPFu .buttons_wrap {
  color: #ffffff;
}
.cid-uHptp8dI9M {
  background-color: #000d20 !important;
  border: 18px solid #000d20;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-uHptp8dI9M {
    border: 8px solid #000d20;
    margin-top: -8px;
  }
}
.cid-uHptp8dI9M .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uHptp8dI9M section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-uHptp8dI9M .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHptp8dI9M .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHptp8dI9M .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHptp8dI9M .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uHptp8dI9M .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHptp8dI9M .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHptp8dI9M .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uHptp8dI9M .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHptp8dI9M .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-uHptp8dI9M .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uHptp8dI9M .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #155e9b;
}
.cid-uHptp8dI9M .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHptp8dI9M .image-wrapper {
    height: auto;
  }
}
.cid-uHptp8dI9M .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uHptp8dI9M .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-uHptp8dI9M .mbr-section-title {
  color: #ed2c03;
}
.cid-uHptp8dI9M .list {
  color: #000000;
}
.cid-uHptp96cNn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHptp96cNn .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHptp96cNn .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHptp96cNn .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHptp96cNn .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHptp96cNn .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHptp96cNn .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHptp96cNn .mbr-section-btn .btn-secondary-outline .active,
.cid-uHptp96cNn .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHptp96cNn .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHptp96cNn .image_post {
  display: inline-block;
}
.cid-uHptp96cNn .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHptp96cNn .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHptp96cNn .mbr-text,
.cid-uHptp96cNn .mbr-section-btn {
  color: #000000;
}
.cid-uHptpa7FOn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000d20;
}
.cid-uHptpa7FOn .title_block {
  margin-bottom: 80px;
}
.cid-uHptpa7FOn .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04dbec;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHptpa7FOn .mbr-section-title {
  color: #000d20;
}
.cid-uHptpa7FOn .card_wrapper {
  padding: 0 35px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptpa7FOn .card_wrapper:hover .card_title {
  color: #ff0000;
}
.cid-uHptpa7FOn .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-uHptpa7FOn .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-uHptpa7FOn .card_wrapper:hover .shape_2 {
  transform: rotate(345deg);
  top: -20px;
  right: 12px;
}
.cid-uHptpa7FOn .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-uHptpa7FOn .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-uHptpa7FOn .row .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 0, 0, 0.4);
  background-image: linear-gradient(40deg, #ff0000 0%, #ff6666 100%);
}
.cid-uHptpa7FOn .row .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(17, 255, 136, 0.4);
  background-image: linear-gradient(40deg, #11ff88 0%, #77ffbb 100%);
}
.cid-uHptpa7FOn .row .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(245, 114, 13, 0.4);
  background-image: linear-gradient(40deg, #f5720d 0%, #f9ab6f 100%);
}
.cid-uHptpa7FOn .row .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(204, 68, 131, 0.4);
  background-image: linear-gradient(40deg, #cc4483 0%, #e294b8 100%);
}
.cid-uHptpa7FOn .icon_block {
  margin-bottom: 40px;
}
.cid-uHptpa7FOn .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-top-right-radius: 0;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cid-uHptpa7FOn .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-uHptpa7FOn .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptpa7FOn .card_text {
  margin-bottom: 0;
}
.cid-uHptpa7FOn .card_link {
  display: block;
  margin-top: 15px;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uHptpa7FOn .card_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptpa7FOn .card_link:hover {
  cursor: pointer;
}
.cid-uHptpa7FOn .card_link:hover a {
  color: #ff0000 !important;
}
.cid-uHptpa7FOn .card_link:hover span {
  transform: translatex(5px);
}
.cid-uHptpa7FOn .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHptpa7FOn .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHptpa7FOn .shape_2 {
  top: 0;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-uHptpa7FOn .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #f5720d;
}
.cid-uHptpa7FOn .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
.cid-uHptpa7FOn .mbr-section-btn {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHptpa7FOn .title_block {
    margin-bottom: 15px;
  }
  .cid-uHptpa7FOn .card_wrapper {
    padding: 0 30px;
    max-width: 370px;
    margin: 50px auto 0;
  }
  .cid-uHptpa7FOn .card_title {
    margin-bottom: 15px;
  }
  .cid-uHptpa7FOn .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uHptpa7FOn .card_title,
.cid-uHptpa7FOn .icon_block {
  color: #ffffff;
}
.cid-uHptpa7FOn .card_text,
.cid-uHptpa7FOn .card_link {
  color: #28395a;
}
.cid-uHptpbxIwD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHptpbxIwD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHptpbxIwD .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-uHptpbxIwD .mbr-text {
  margin-bottom: 30px;
}
.cid-uHptpbxIwD .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-uHptpbxIwD .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-uHptpbxIwD .iconfont-wrapper svg #grad_1 {
  stop-color: #ed76ad;
}
.cid-uHptpbxIwD .iconfont-wrapper svg #grad_2 {
  stop-color: #f9d0e3;
}
.cid-uHptpbxIwD .iconfont-wrapper svg #blur_svg {
  flood-color: #ed76ad;
}
.cid-uHptpbxIwD .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-uHptpbxIwD .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHptpbxIwD .text-wrapper {
    text-align: center;
  }
  .cid-uHptpbxIwD .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHptpbxIwD .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHptpbxIwD .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHptpbxIwD .card-title,
.cid-uHptpbxIwD .icon_block {
  color: #000000;
}
.cid-uHptpbxIwD .mbr-text,
.cid-uHptpbxIwD .mbr-section-btn {
  color: #000000;
}
.cid-uHptpcpHdD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHptpcpHdD blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHptpcpHdD .mbr-text {
  color: #ffffff;
}
.cid-uHptpcpHdD .mbr-section-title {
  color: #ffffff;
}
.cid-uHptpd61Ku {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHptpd61Ku .article-border {
  border-bottom: 2px solid #58b39a;
}
.cid-uHptpd61Ku .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-uHptpd61Ku .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uHptpd61Ku .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-uHptpd61Ku .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-uHptpd61Ku .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uHptpd61Ku .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHptpdTidp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHptpdTidp .row {
  justify-content: flex-start;
}
.cid-uHptpdTidp .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uHptpdTidp .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHptpdTidp .mbr-section-title {
  color: #45494E;
}
.cid-uHptpdTidp .mbr-section-subtitle {
  color: #45494E;
}
.cid-uHptpdTidp .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uHptpdTidp .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uHptpdTidp .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uHptpdTidp .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uHptpdTidp .item-content {
    padding-bottom: 10%;
  }
}
.cid-uHptpdTidp .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHptpdTidp .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uHptpdTidp .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-uHptpdTidp .mbr-section-btn {
  margin-top: auto;
}
.cid-uHptpdTidp .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-uHptpdTidp .item-img {
    margin-bottom: 24px;
  }
}
.cid-uHptpdTidp .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uHptpdTidp .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uHptpdTidp .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uHptpeTayR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHptpeTayR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHptpeTayR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHptpeTayR .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #000d20 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uHptpeTayR .card-wrapper {
    padding: 16px;
  }
}
.cid-uHptpeTayR .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHptpeTayR .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uHptpeTayR .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uHptpeTayR .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uHptpeTayR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHptpeTayR .list {
  color: #ffffff;
  text-align: center;
}
.cid-uHptpeTayR .list,
.cid-uHptpeTayR .item-wrap,
.cid-uHptpeTayR .tabs-wrapper {
  color: #000000;
}
.cid-uHptpfOuYt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHptpfOuYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHptpfOuYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHptpfOuYt .container {
    padding: 0 22px;
  }
}
.cid-uHptpfOuYt .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHptpfOuYt .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHptpfOuYt .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uHptpfOuYt .image-wrapper img {
    height: 350px;
  }
}
.cid-uHptpfOuYt .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uHptpfOuYt .panel-group {
  border-bottom: 1px solid #ffffff;
}
.cid-uHptpfOuYt .panel-group .card {
  border-top: 1px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uHptpfOuYt .panel-group .card:hover,
.cid-uHptpfOuYt .panel-group .card:focus {
  border-top: 1px solid #ffffff;
}
.cid-uHptpfOuYt .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHptpfOuYt .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uHptpfOuYt .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHptpfOuYt .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHptpfOuYt .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uHptpfOuYt .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uHptpfOuYt .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uHptpfOuYt .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHptpfOuYt .panel-title-edit {
  color: #ffffff;
}
.cid-uHptpfOuYt .panel-text {
  color: #8a8588;
}
.cid-uHptphb0Zw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uHptphb0Zw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHptphb0Zw .mbr-section-title {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uHptphb0Zw .mbr-text {
  margin-bottom: 50px;
}
.cid-uHptphb0Zw .card_wrap {
  margin-bottom: 20px;
}
.cid-uHptphb0Zw .item:nth-child(1) .icon_block svg polygon {
  fill: #fef2e9;
}
.cid-uHptphb0Zw .item:nth-child(1) .mbr-iconfont {
  color: #f5720d;
}
.cid-uHptphb0Zw .item:nth-child(2) .icon_block svg polygon {
  fill: #f6dce8;
}
.cid-uHptphb0Zw .item:nth-child(2) .mbr-iconfont {
  color: #cc4483;
}
.cid-uHptphb0Zw .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-uHptphb0Zw .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-uHptphb0Zw .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-uHptphb0Zw .card_title {
  margin-bottom: 18px;
  color: #000d20;
}
.cid-uHptphb0Zw .card_text {
  margin-bottom: 0;
  color: #28395a;
}
.cid-uHptphb0Zw .mbr-section-btn {
  margin-top: 30px;
}
.cid-uHptphb0Zw .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHptphb0Zw .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHptphb0Zw .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-uHptphb0Zw .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #f5720d;
}
.cid-uHptphb0Zw .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-uHptphb0Zw .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHptphb0Zw .text-wrapper {
    text-align: center;
  }
  .cid-uHptphb0Zw .card_wrap {
    margin-bottom: 20px;
  }
  .cid-uHptphb0Zw .icon_block {
    margin-bottom: 20px;
  }
  .cid-uHptphb0Zw .card_title {
    margin-bottom: 10px;
  }
  .cid-uHptphb0Zw .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHptphb0Zw .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-uHptphb0Zw .mbr-text,
.cid-uHptphb0Zw .mbr-section-btn {
  color: #000000;
}
.cid-uHptpihU8y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHptpihU8y blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHptpihU8y .mbr-text {
  color: #ffffff;
}
.cid-uHptpihU8y .mbr-section-title {
  color: #ffffff;
}
.cid-uHptpj0Gc2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHptpj0Gc2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHptpj0Gc2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHptpj0Gc2 .container {
    padding: 0 22px;
  }
}
.cid-uHptpj0Gc2 .row {
  justify-content: center;
}
.cid-uHptpj0Gc2 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHptpj0Gc2 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHptpj0Gc2 .panel-group .card {
  border-radius: 0 !important;
}
.cid-uHptpj0Gc2 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  padding: 20px;
}
.cid-uHptpj0Gc2 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHptpj0Gc2 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHptpj0Gc2 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHptpj0Gc2 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uHptpj0Gc2 .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-uHptpj0Gc2 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHptpj0Gc2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHptpj0Gc2 .panel-title-edit {
  color: #000000;
}
.cid-uHptpj0Gc2 .panel-text {
  color: #000000;
}
.cid-uHptpjZenl {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHptpjZenl .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHptpjZenl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHptpjZenl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHptpjZenl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHptpjZenl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHptpkTx1q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHptpkTx1q .footer_col_logo {
  width: 40%;
}
.cid-uHptpkTx1q .footer_col {
  width: 20%;
}
.cid-uHptpkTx1q .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uHptpkTx1q .logo_wrap {
  max-width: 20%;
}
.cid-uHptpkTx1q .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-uHptpkTx1q .brand_name {
  color: #ffffff;
}
.cid-uHptpkTx1q .contacts {
  margin-top: 46px;
}
.cid-uHptpkTx1q .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-uHptpkTx1q .contacts b {
  color: #ffffff;
}
.cid-uHptpkTx1q .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-uHptpkTx1q .item-wrap {
  line-height: 44px;
}
.cid-uHptpkTx1q .text-white {
  color: #a99fc5 !important;
}
.cid-uHptpkTx1q .text-white:hover {
  color: #ffffff !important;
}
.cid-uHptpkTx1q .item-wrap a,
.cid-uHptpkTx1q .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptpkTx1q .item-wrap a:before,
.cid-uHptpkTx1q .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHptpkTx1q .item-wrap a:hover::before,
.cid-uHptpkTx1q .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHptpkTx1q .form_wrap {
  display: flex;
}
.cid-uHptpkTx1q .mbr-form {
  margin-top: 30px;
}
.cid-uHptpkTx1q .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHptpkTx1q .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHptpkTx1q input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHptpkTx1q .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-uHptpkTx1q .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uHptpkTx1q .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uHptpkTx1q .footer_col_logo {
    width: 100%;
  }
  .cid-uHptpkTx1q .footer_col {
    width: 33.3%;
  }
  .cid-uHptpkTx1q .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-uHptpkTx1q .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-uHptpkTx1q .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uHptpkTx1q .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uHptpkTx1q .row {
    justify-content: center;
    text-align: center;
  }
  .cid-uHptpkTx1q .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-uHptpkTx1q .mbr-form .form-group {
    width: 100%;
  }
  .cid-uHptpkTx1q .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-uHptpkTx1q .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-uHptpkTx1q .contacts_mail {
  color: #ffffff;
}
.cid-uHptpkTx1q .contacts_phone {
  color: #ffffff;
}
.cid-uHptplU1E7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-uHptplU1E7 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-uHptplU1E7 .text-white {
  color: #a99fc5 !important;
}
.cid-uHptplU1E7 .text-white:hover {
  color: #ffffff !important;
}
.cid-uHptplU1E7 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHptplU1E7 .foot-menu li {
  padding: 10px;
}
.cid-uHptplU1E7 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHptplU1E7 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHptplU1E7 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHptplU1E7 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHptplU1E7 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-uHptplU1E7 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-uHptplU1E7 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-uHptplU1E7 .social-list a:hover {
  opacity: 1;
}
.cid-uHptplU1E7 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-uHptplU1E7 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-uHptplU1E7 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-uHpvvCCX8D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHpvvCCX8D nav.navbar {
  position: fixed;
}
.cid-uHpvvCCX8D .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-uHpvvCCX8D .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-uHpvvCCX8D .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-uHpvvCCX8D .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-uHpvvCCX8D .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-uHpvvCCX8D .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-uHpvvCCX8D .dropdown-item:hover,
.cid-uHpvvCCX8D .dropdown-item:focus {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #ff0000 !important;
}
.cid-uHpvvCCX8D .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-uHpvvCCX8D .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-uHpvvCCX8D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-uHpvvCCX8D .nav-link {
  position: relative;
  line-height: 1;
}
.cid-uHpvvCCX8D .nav-link:hover {
  color: #ff0000 !important;
}
.cid-uHpvvCCX8D .container {
  display: flex;
  margin: auto;
}
.cid-uHpvvCCX8D .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-uHpvvCCX8D .dropdown-menu,
.cid-uHpvvCCX8D .navbar.opened {
  background: #000d20 !important;
}
.cid-uHpvvCCX8D .nav-item:focus,
.cid-uHpvvCCX8D .nav-link:focus {
  outline: none;
}
.cid-uHpvvCCX8D .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-uHpvvCCX8D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHpvvCCX8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHpvvCCX8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHpvvCCX8D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHpvvCCX8D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHpvvCCX8D .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #000d20;
}
.cid-uHpvvCCX8D .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-uHpvvCCX8D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHpvvCCX8D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHpvvCCX8D .navbar.opened {
  transition: all 0.3s;
}
.cid-uHpvvCCX8D .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-uHpvvCCX8D .navbar .navbar-logo img {
  width: auto;
}
.cid-uHpvvCCX8D .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uHpvvCCX8D .navbar.collapsed {
  justify-content: center;
}
.cid-uHpvvCCX8D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHpvvCCX8D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHpvvCCX8D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHpvvCCX8D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHpvvCCX8D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHpvvCCX8D .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-uHpvvCCX8D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHpvvCCX8D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHpvvCCX8D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHpvvCCX8D .navbar .dropdown-menu {
    display: none;
  }
  .cid-uHpvvCCX8D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHpvvCCX8D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHpvvCCX8D .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-uHpvvCCX8D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHpvvCCX8D .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-uHpvvCCX8D .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-uHpvvCCX8D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHpvvCCX8D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHpvvCCX8D .navbar .navbar-buttons,
  .cid-uHpvvCCX8D .navbar .icons-menu {
    display: none;
  }
  .cid-uHpvvCCX8D .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-uHpvvCCX8D .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHpvvCCX8D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHpvvCCX8D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHpvvCCX8D .dropdown-item.active,
.cid-uHpvvCCX8D .dropdown-item:active {
  background-color: transparent;
}
.cid-uHpvvCCX8D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHpvvCCX8D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000d20;
}
.cid-uHpvvCCX8D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHpvvCCX8D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHpvvCCX8D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHpvvCCX8D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHpvvCCX8D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHpvvCCX8D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHpvvCCX8D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpvvCCX8D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHpvvCCX8D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHpvvCCX8D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpvvCCX8D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHpvvCCX8D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHpvvCCX8D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHpvvCCX8D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHpvvCCX8D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uHpvvCCX8D .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHpvvCCX8D .navbar {
    height: 70px;
  }
  .cid-uHpvvCCX8D .navbar.opened {
    height: auto;
  }
  .cid-uHpvvCCX8D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHpvvEvkUi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000d20;
}
.cid-uHpvvEvkUi .image_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-uHpvvEvkUi .mbr-section-title {
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 37px;
  color: #ffffff;
}
.cid-uHpvvEvkUi .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff0000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpvvEvkUi .mbr-text {
  margin-bottom: 50px;
  line-height: 1.54;
}
.cid-uHpvvEvkUi .mbr-section-btn {
  display: inline-block;
}
.cid-uHpvvEvkUi .btn_link {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
  text-align: center;
}
.cid-uHpvvEvkUi .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvEvkUi .btn_link:before {
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
  background-color: #6a7c92;
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
}
.cid-uHpvvEvkUi .btn_link:after {
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #ff0000;
  transition: transform 0.4s ease 0.2s;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 2px;
  position: absolute;
}
.cid-uHpvvEvkUi .btn_link:hover {
  cursor: pointer;
}
.cid-uHpvvEvkUi .btn_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpvvEvkUi .btn_link:hover:after {
  transform: scaleX(1);
}
.cid-uHpvvEvkUi .btn_link:hover:before {
  transform: scaleX(0);
}
.cid-uHpvvEvkUi .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-uHpvvEvkUi .head_block {
    order: 1;
    text-align: center;
  }
  .cid-uHpvvEvkUi .image_img {
    margin-bottom: 40px;
  }
  .cid-uHpvvEvkUi .mbr-section-title {
    margin-bottom: 22px;
  }
  .cid-uHpvvEvkUi .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpvvEvkUi .btn_link {
    margin-left: 0;
    margin-top: 20px;
  }
}
.cid-uHpvvEvkUi .mbr-text,
.cid-uHpvvEvkUi .buttons_wrap {
  color: #ffffff;
}
.cid-uHpvvFwHAQ {
  background-color: #000d20 !important;
  border: 18px solid #000d20;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-uHpvvFwHAQ {
    border: 8px solid #000d20;
    margin-top: -8px;
  }
}
.cid-uHpvvFwHAQ .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-uHpvvFwHAQ section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-uHpvvFwHAQ .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHpvvFwHAQ .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpvvFwHAQ .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpvvFwHAQ .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uHpvvFwHAQ .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHpvvFwHAQ .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHpvvFwHAQ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uHpvvFwHAQ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHpvvFwHAQ .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-uHpvvFwHAQ .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uHpvvFwHAQ .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #155e9b;
}
.cid-uHpvvFwHAQ .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uHpvvFwHAQ .image-wrapper {
    height: auto;
  }
}
.cid-uHpvvFwHAQ .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uHpvvFwHAQ .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-uHpvvFwHAQ .mbr-section-title {
  color: #ed2c03;
}
.cid-uHpvvFwHAQ .list {
  color: #000000;
}
.cid-uHpvvGpNQo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpvvGpNQo .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uHpvvGpNQo .content_wrapper:hover .mbr-section-title a {
  color: #000d20 !important;
}
.cid-uHpvvGpNQo .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uHpvvGpNQo .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uHpvvGpNQo .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uHpvvGpNQo .mbr-section-btn .btn-secondary-outline:hover,
.cid-uHpvvGpNQo .mbr-section-btn .btn-secondary-outline .active,
.cid-uHpvvGpNQo .mbr-section-btn .btn-secondary-outline:focus {
  color: #ff0000 !important;
}
.cid-uHpvvGpNQo .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uHpvvGpNQo .image_post {
  display: inline-block;
}
.cid-uHpvvGpNQo .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uHpvvGpNQo .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uHpvvGpNQo .mbr-text,
.cid-uHpvvGpNQo .mbr-section-btn {
  color: #000000;
}
.cid-uHpvvHbhTq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000d20;
}
.cid-uHpvvHbhTq .title_block {
  margin-bottom: 80px;
}
.cid-uHpvvHbhTq .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04dbec;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uHpvvHbhTq .mbr-section-title {
  color: #000d20;
}
.cid-uHpvvHbhTq .card_wrapper {
  padding: 0 35px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvHbhTq .card_wrapper:hover .card_title {
  color: #ff0000;
}
.cid-uHpvvHbhTq .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-uHpvvHbhTq .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-uHpvvHbhTq .card_wrapper:hover .shape_2 {
  transform: rotate(345deg);
  top: -20px;
  right: 12px;
}
.cid-uHpvvHbhTq .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-uHpvvHbhTq .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-uHpvvHbhTq .row .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 0, 0, 0.4);
  background-image: linear-gradient(40deg, #ff0000 0%, #ff6666 100%);
}
.cid-uHpvvHbhTq .row .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(17, 255, 136, 0.4);
  background-image: linear-gradient(40deg, #11ff88 0%, #77ffbb 100%);
}
.cid-uHpvvHbhTq .row .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(245, 114, 13, 0.4);
  background-image: linear-gradient(40deg, #f5720d 0%, #f9ab6f 100%);
}
.cid-uHpvvHbhTq .row .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(204, 68, 131, 0.4);
  background-image: linear-gradient(40deg, #cc4483 0%, #e294b8 100%);
}
.cid-uHpvvHbhTq .icon_block {
  margin-bottom: 40px;
}
.cid-uHpvvHbhTq .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-top-right-radius: 0;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cid-uHpvvHbhTq .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-uHpvvHbhTq .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvHbhTq .card_text {
  margin-bottom: 0;
}
.cid-uHpvvHbhTq .card_link {
  display: block;
  margin-top: 15px;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-uHpvvHbhTq .card_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvHbhTq .card_link:hover {
  cursor: pointer;
}
.cid-uHpvvHbhTq .card_link:hover a {
  color: #ff0000 !important;
}
.cid-uHpvvHbhTq .card_link:hover span {
  transform: translatex(5px);
}
.cid-uHpvvHbhTq .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHpvvHbhTq .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHpvvHbhTq .shape_2 {
  top: 0;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-uHpvvHbhTq .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #f5720d;
}
.cid-uHpvvHbhTq .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
.cid-uHpvvHbhTq .mbr-section-btn {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHpvvHbhTq .title_block {
    margin-bottom: 15px;
  }
  .cid-uHpvvHbhTq .card_wrapper {
    padding: 0 30px;
    max-width: 370px;
    margin: 50px auto 0;
  }
  .cid-uHpvvHbhTq .card_title {
    margin-bottom: 15px;
  }
  .cid-uHpvvHbhTq .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uHpvvHbhTq .card_title,
.cid-uHpvvHbhTq .icon_block {
  color: #ffffff;
}
.cid-uHpvvHbhTq .card_text,
.cid-uHpvvHbhTq .card_link {
  color: #28395a;
}
.cid-uHpvvIneWH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpvvIneWH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHpvvIneWH .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-uHpvvIneWH .mbr-text {
  margin-bottom: 30px;
}
.cid-uHpvvIneWH .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-uHpvvIneWH .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-uHpvvIneWH .iconfont-wrapper svg #grad_1 {
  stop-color: #ed76ad;
}
.cid-uHpvvIneWH .iconfont-wrapper svg #grad_2 {
  stop-color: #f9d0e3;
}
.cid-uHpvvIneWH .iconfont-wrapper svg #blur_svg {
  flood-color: #ed76ad;
}
.cid-uHpvvIneWH .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-uHpvvIneWH .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHpvvIneWH .text-wrapper {
    text-align: center;
  }
  .cid-uHpvvIneWH .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHpvvIneWH .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uHpvvIneWH .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHpvvIneWH .card-title,
.cid-uHpvvIneWH .icon_block {
  color: #000000;
}
.cid-uHpvvIneWH .mbr-text,
.cid-uHpvvIneWH .mbr-section-btn {
  color: #000000;
}
.cid-uHpvvJckoj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpvvJckoj blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHpvvJckoj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uHpvvJckoj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHpvvJR9Kk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHpvvJR9Kk .article-border {
  border-bottom: 2px solid #58b39a;
}
.cid-uHpvvJR9Kk .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-uHpvvJR9Kk .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uHpvvJR9Kk .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-uHpvvJR9Kk .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-uHpvvJR9Kk .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uHpvvJR9Kk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHpvvKUOEA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpvvKUOEA .row {
  justify-content: flex-start;
}
.cid-uHpvvKUOEA .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uHpvvKUOEA .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHpvvKUOEA .mbr-section-title {
  color: #45494E;
}
.cid-uHpvvKUOEA .mbr-section-subtitle {
  color: #45494E;
}
.cid-uHpvvKUOEA .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uHpvvKUOEA .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uHpvvKUOEA .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uHpvvKUOEA .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uHpvvKUOEA .item-content {
    padding-bottom: 10%;
  }
}
.cid-uHpvvKUOEA .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHpvvKUOEA .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uHpvvKUOEA .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-uHpvvKUOEA .mbr-section-btn {
  margin-top: auto;
}
.cid-uHpvvKUOEA .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-uHpvvKUOEA .item-img {
    margin-bottom: 24px;
  }
}
.cid-uHpvvKUOEA .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uHpvvKUOEA .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uHpvvKUOEA .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uHpvvLZpSX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpvvLZpSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpvvLZpSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHpvvLZpSX .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #000d20 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uHpvvLZpSX .card-wrapper {
    padding: 16px;
  }
}
.cid-uHpvvLZpSX .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHpvvLZpSX .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uHpvvLZpSX .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uHpvvLZpSX .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uHpvvLZpSX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHpvvLZpSX .list {
  color: #ffffff;
  text-align: center;
}
.cid-uHpvvLZpSX .list,
.cid-uHpvvLZpSX .item-wrap,
.cid-uHpvvLZpSX .tabs-wrapper {
  color: #000000;
}
.cid-uHpvvN02GM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpvvN02GM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpvvN02GM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpvvN02GM .container {
    padding: 0 22px;
  }
}
.cid-uHpvvN02GM .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHpvvN02GM .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHpvvN02GM .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uHpvvN02GM .image-wrapper img {
    height: 350px;
  }
}
.cid-uHpvvN02GM .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uHpvvN02GM .panel-group {
  border-bottom: 1px solid #ffffff;
}
.cid-uHpvvN02GM .panel-group .card {
  border-top: 1px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uHpvvN02GM .panel-group .card:hover,
.cid-uHpvvN02GM .panel-group .card:focus {
  border-top: 1px solid #ffffff;
}
.cid-uHpvvN02GM .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHpvvN02GM .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uHpvvN02GM .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHpvvN02GM .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHpvvN02GM .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uHpvvN02GM .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uHpvvN02GM .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uHpvvN02GM .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHpvvN02GM .panel-title-edit {
  color: #ffffff;
}
.cid-uHpvvN02GM .panel-text {
  color: #8a8588;
}
.cid-uHpvvOtJ3e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uHpvvOtJ3e .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHpvvOtJ3e .mbr-section-title {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uHpvvOtJ3e .mbr-text {
  margin-bottom: 50px;
}
.cid-uHpvvOtJ3e .card_wrap {
  margin-bottom: 20px;
}
.cid-uHpvvOtJ3e .item:nth-child(1) .icon_block svg polygon {
  fill: #fef2e9;
}
.cid-uHpvvOtJ3e .item:nth-child(1) .mbr-iconfont {
  color: #f5720d;
}
.cid-uHpvvOtJ3e .item:nth-child(2) .icon_block svg polygon {
  fill: #f6dce8;
}
.cid-uHpvvOtJ3e .item:nth-child(2) .mbr-iconfont {
  color: #cc4483;
}
.cid-uHpvvOtJ3e .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-uHpvvOtJ3e .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-uHpvvOtJ3e .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-uHpvvOtJ3e .card_title {
  margin-bottom: 18px;
  color: #000d20;
}
.cid-uHpvvOtJ3e .card_text {
  margin-bottom: 0;
  color: #28395a;
}
.cid-uHpvvOtJ3e .mbr-section-btn {
  margin-top: 30px;
}
.cid-uHpvvOtJ3e .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-uHpvvOtJ3e .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #11ff88;
  border-radius: 50%;
}
.cid-uHpvvOtJ3e .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #cc4483;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-uHpvvOtJ3e .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #f5720d;
}
.cid-uHpvvOtJ3e .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #f8d68e;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-uHpvvOtJ3e .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHpvvOtJ3e .text-wrapper {
    text-align: center;
  }
  .cid-uHpvvOtJ3e .card_wrap {
    margin-bottom: 20px;
  }
  .cid-uHpvvOtJ3e .icon_block {
    margin-bottom: 20px;
  }
  .cid-uHpvvOtJ3e .card_title {
    margin-bottom: 10px;
  }
  .cid-uHpvvOtJ3e .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uHpvvOtJ3e .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-uHpvvOtJ3e .mbr-text,
.cid-uHpvvOtJ3e .mbr-section-btn {
  color: #000000;
}
.cid-uHpvvPCOzn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpvvPCOzn blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000d20;
}
.cid-uHpvvPCOzn .mbr-text {
  color: #ffffff;
}
.cid-uHpvvPCOzn .mbr-section-title {
  color: #ffffff;
}
.cid-uHpvvQr9PP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHpvvQr9PP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpvvQr9PP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHpvvQr9PP .container {
    padding: 0 22px;
  }
}
.cid-uHpvvQr9PP .row {
  justify-content: center;
}
.cid-uHpvvQr9PP .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHpvvQr9PP .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHpvvQr9PP .panel-group .card {
  border-radius: 0 !important;
}
.cid-uHpvvQr9PP .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  padding: 20px;
}
.cid-uHpvvQr9PP .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHpvvQr9PP .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHpvvQr9PP .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-uHpvvQr9PP .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uHpvvQr9PP .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-uHpvvQr9PP .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uHpvvQr9PP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHpvvQr9PP .panel-title-edit {
  color: #000000;
}
.cid-uHpvvQr9PP .panel-text {
  color: #000000;
}
.cid-uHpvvRCTLV {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uHpvvRCTLV .google-map {
  height: 30rem;
  position: relative;
}
.cid-uHpvvRCTLV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHpvvRCTLV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHpvvRCTLV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHpvvRCTLV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHpvvSBtjS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d20;
}
.cid-uHpvvSBtjS .footer_col_logo {
  width: 40%;
}
.cid-uHpvvSBtjS .footer_col {
  width: 20%;
}
.cid-uHpvvSBtjS .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uHpvvSBtjS .logo_wrap {
  max-width: 20%;
}
.cid-uHpvvSBtjS .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-uHpvvSBtjS .brand_name {
  color: #ffffff;
}
.cid-uHpvvSBtjS .contacts {
  margin-top: 46px;
}
.cid-uHpvvSBtjS .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-uHpvvSBtjS .contacts b {
  color: #ffffff;
}
.cid-uHpvvSBtjS .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-uHpvvSBtjS .item-wrap {
  line-height: 44px;
}
.cid-uHpvvSBtjS .text-white {
  color: #a99fc5 !important;
}
.cid-uHpvvSBtjS .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpvvSBtjS .item-wrap a,
.cid-uHpvvSBtjS .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvSBtjS .item-wrap a:before,
.cid-uHpvvSBtjS .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpvvSBtjS .item-wrap a:hover::before,
.cid-uHpvvSBtjS .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpvvSBtjS .form_wrap {
  display: flex;
}
.cid-uHpvvSBtjS .mbr-form {
  margin-top: 30px;
}
.cid-uHpvvSBtjS .mbr-form .form-group {
  width: 80%;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpvvSBtjS .mbr-form input {
  height: 50px;
  background-color: rgba(106, 124, 146, 0.5);
  border: 1px solid rgba(106, 124, 146, 0.5) !important;
  padding: 0px 30px;
  border-radius: 45px;
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpvvSBtjS input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cid-uHpvvSBtjS .mbr-section-btn {
  display: inline-block;
  position: relative;
  left: -80px;
}
.cid-uHpvvSBtjS .mbr-section-btn .mbr-iconfont {
  width: 20px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uHpvvSBtjS .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uHpvvSBtjS .footer_col_logo {
    width: 100%;
  }
  .cid-uHpvvSBtjS .footer_col {
    width: 33.3%;
  }
  .cid-uHpvvSBtjS .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-uHpvvSBtjS .mbr-form {
    margin: 28px 0 40px;
  }
  .cid-uHpvvSBtjS .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uHpvvSBtjS .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-uHpvvSBtjS .row {
    justify-content: center;
    text-align: center;
  }
  .cid-uHpvvSBtjS .mbr-form {
    margin: 25px 0 10px;
  }
  .cid-uHpvvSBtjS .mbr-form .form-group {
    width: 100%;
  }
  .cid-uHpvvSBtjS .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-uHpvvSBtjS .footer_col {
    margin-top: 40px;
    width: 100%;
  }
}
.cid-uHpvvSBtjS .contacts_mail {
  color: #ffffff;
}
.cid-uHpvvSBtjS .contacts_phone {
  color: #ffffff;
}
.cid-uHpvvTBx9r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d20;
}
.cid-uHpvvTBx9r .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-uHpvvTBx9r .text-white {
  color: #a99fc5 !important;
}
.cid-uHpvvTBx9r .text-white:hover {
  color: #ffffff !important;
}
.cid-uHpvvTBx9r .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHpvvTBx9r .foot-menu li {
  padding: 10px;
}
.cid-uHpvvTBx9r .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uHpvvTBx9r .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-uHpvvTBx9r .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-uHpvvTBx9r .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHpvvTBx9r .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-uHpvvTBx9r .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-uHpvvTBx9r .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-uHpvvTBx9r .social-list a:hover {
  opacity: 1;
}
.cid-uHpvvTBx9r .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .cid-uHpvvTBx9r .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-uHpvvTBx9r .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
