.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #8caff0 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #22a5e5 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #3f7ae6 !important;
  border-color: #3f7ae6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3f7ae6 !important;
  border-color: #3f7ae6 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #8caff0;
  color: #8caff0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f7ae6 !important;
  background-color: transparent!important;
  border-color: #3f7ae6 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #22a5e5;
  color: #22a5e5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: #13709e !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8caff0 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #22a5e5 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3270e4 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #116690 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #8caff0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #22a5e5;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8caff0;
  border-color: #8caff0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8caff0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8caff0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #8caff0;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8caff0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8caff0;
}
.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: #8caff0;
  border-bottom-color: #8caff0;
}
.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: #000000 !important;
  background-color: #8caff0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%238caff0' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uIHjV8jaZO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIHjV8jaZO img {
  width: 120px;
  margin: auto;
}
.cid-uIHjV8jaZO .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uIHjV8jaZO .card {
    max-width: 12.5%;
  }
}
.cid-tx7LFufMoU {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-tx7LFufMoU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx7LFufMoU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx7LFufMoU .mbr-text,
.cid-tx7LFufMoU .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tx7LFufMoU .mbr-section-title {
  color: #22a5e5;
  text-align: right;
}
.cid-tx7LFufMoU .mbr-section-title DIV {
  text-align: right;
}
.cid-tx7LFufMoU .mbr-section-subtitle {
  color: #4479d9;
  text-align: center;
}
.cid-tx8vzj7GhO {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-tx8vzj7GhO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx8vzj7GhO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tx8vzj7GhO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tx8vzj7GhO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tx8vzj7GhO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tx8vzj7GhO .mbr-section-title {
  text-align: center;
  color: #353535;
}
.cid-tx8vzj7GhO .mbr-text {
  color: #000000;
}
.cid-uHPINC6PSU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHPINC6PSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHPINC6PSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHPINC6PSU .item {
  padding-bottom: 2rem;
}
.cid-uHPINC6PSU .item-wrapper {
  position: relative;
}
.cid-uHPINC6PSU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uHPINC6PSU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uHPINC6PSU .carousel-control,
.cid-uHPINC6PSU .close {
  background: #1b1b1b;
}
.cid-uHPINC6PSU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uHPINC6PSU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uHPINC6PSU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uHPINC6PSU .carousel-control-next span {
  margin-left: 5px;
}
.cid-uHPINC6PSU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uHPINC6PSU .close::before {
  content: '\e91a';
}
.cid-uHPINC6PSU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uHPINC6PSU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uHPINC6PSU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHPINC6PSU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHPINC6PSU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHPINC6PSU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uHPINC6PSU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uHPINC6PSU .carousel-indicators li.active,
.cid-uHPINC6PSU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uHPINC6PSU .carousel-indicators li::after,
.cid-uHPINC6PSU .carousel-indicators li::before {
  content: none;
}
.cid-uHPINC6PSU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uHPINC6PSU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uHPINC6PSU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uHPINC6PSU .carousel-indicators {
    display: none;
  }
}
.cid-uHPINC6PSU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uHPINC6PSU .carousel-inner > .active {
  display: block;
}
.cid-uHPINC6PSU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHPINC6PSU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHPINC6PSU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uHPINC6PSU .carousel-control,
  .cid-uHPINC6PSU .carousel-indicators,
  .cid-uHPINC6PSU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uHPINC6PSU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uHPINC6PSU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uHPINC6PSU .carousel-indicators .active,
.cid-uHPINC6PSU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uHPINC6PSU .carousel-indicators .active {
  background: #fff;
}
.cid-uHPINC6PSU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uHPINC6PSU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uHPINC6PSU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uHPINC6PSU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uHPINC6PSU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uHPINC6PSU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uHPINC6PSU .carousel {
  width: 100%;
}
.cid-uHPINC6PSU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uHPINC6PSU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uHPINC6PSU .modal.fade .modal-dialog,
.cid-uHPINC6PSU .modal.in .modal-dialog {
  transform: none;
}
.cid-uHPINC6PSU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uHPINC6PSU H6 {
  text-align: center;
}
.cid-txbmXxoO0G {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txbmXxoO0G .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbmXxoO0G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txbmXxoO0G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txbmXxoO0G .row {
  flex-direction: row-reverse;
}
.cid-txbmXxoO0G img {
  width: 100%;
}
.cid-txbmXxoO0G .mbr-text {
  color: #000000;
}
.cid-uHL2v0SAG8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHL2v0SAG8 .mbr-overlay {
  background: #fafafa;
  opacity: 0.8;
}
.cid-uHL2v0SAG8 img,
.cid-uHL2v0SAG8 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uHL2v0SAG8 .item:focus,
.cid-uHL2v0SAG8 span:focus {
  outline: none;
}
.cid-uHL2v0SAG8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHL2v0SAG8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHL2v0SAG8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHL2v0SAG8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHL2v0SAG8 .item-wrapper {
  background: transparent;
}
.cid-uHL2v0SAG8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHL2v0SAG8 .mbr-section-title {
  color: #232323;
}
.cid-uHL2v0SAG8 .mbr-text,
.cid-uHL2v0SAG8 .mbr-section-btn {
  text-align: left;
}
.cid-uHL2v0SAG8 .item-title {
  text-align: center;
}
.cid-uHL2v0SAG8 .item-subtitle {
  text-align: center;
}
.cid-txaewJasCN {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaewJasCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaewJasCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txaewJasCN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txaewJasCN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txaewJasCN .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaewJasCN .mbr-text {
  color: #000000;
}
.cid-txaewJasCN .mbr-section-title {
  text-align: center;
}
.cid-uHFv3NPLDk {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHFv3NPLDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFv3NPLDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHFv3NPLDk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHFv3NPLDk .row {
  flex-direction: row-reverse;
}
.cid-uHFv3NPLDk img {
  width: 100%;
}
.cid-tx8oymShhS {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-tx8oymShhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx8oymShhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tx8oymShhS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tx8oymShhS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tx8oymShhS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tx8oymShhS .mbr-text {
  color: #000000;
}
.cid-tx8oymShhS .mbr-section-title {
  color: #000000;
}
.cid-tx8oymShhS .mbr-section-title DIV {
  text-align: center;
}
.cid-uflG0kAMnn {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uflG0kAMnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uflG0kAMnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uflG0kAMnn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uflG0kAMnn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uflG0kAMnn .text-wrapper {
    padding: 2rem;
  }
}
.cid-uflG0kAMnn .mbr-section-title {
  text-align: center;
}
.cid-uflG0kAMnn .mbr-text {
  text-align: left;
}
.cid-uflJaifm3P {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uflJaifm3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uflJaifm3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uflJaifm3P .item {
  padding-bottom: 2rem;
}
.cid-uflJaifm3P .item-wrapper {
  position: relative;
}
.cid-uflJaifm3P .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uflJaifm3P .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uflJaifm3P .carousel-control,
.cid-uflJaifm3P .close {
  background: #1b1b1b;
}
.cid-uflJaifm3P .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uflJaifm3P .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uflJaifm3P .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uflJaifm3P .carousel-control-next span {
  margin-left: 5px;
}
.cid-uflJaifm3P .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uflJaifm3P .close::before {
  content: '\e91a';
}
.cid-uflJaifm3P .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uflJaifm3P .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uflJaifm3P .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uflJaifm3P .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uflJaifm3P .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uflJaifm3P .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uflJaifm3P .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uflJaifm3P .carousel-indicators li.active,
.cid-uflJaifm3P .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uflJaifm3P .carousel-indicators li::after,
.cid-uflJaifm3P .carousel-indicators li::before {
  content: none;
}
.cid-uflJaifm3P .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uflJaifm3P .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uflJaifm3P .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uflJaifm3P .carousel-indicators {
    display: none;
  }
}
.cid-uflJaifm3P .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uflJaifm3P .carousel-inner > .active {
  display: block;
}
.cid-uflJaifm3P .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uflJaifm3P .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uflJaifm3P .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uflJaifm3P .carousel-control,
  .cid-uflJaifm3P .carousel-indicators,
  .cid-uflJaifm3P .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uflJaifm3P .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uflJaifm3P .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uflJaifm3P .carousel-indicators .active,
.cid-uflJaifm3P .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uflJaifm3P .carousel-indicators .active {
  background: #fff;
}
.cid-uflJaifm3P .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uflJaifm3P .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uflJaifm3P .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uflJaifm3P .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uflJaifm3P .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uflJaifm3P .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uflJaifm3P .carousel {
  width: 100%;
}
.cid-uflJaifm3P .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uflJaifm3P .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uflJaifm3P .modal.fade .modal-dialog,
.cid-uflJaifm3P .modal.in .modal-dialog {
  transform: none;
}
.cid-uflJaifm3P .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uflJaifm3P H6 {
  text-align: center;
}
.cid-uflJaifm3P DIV {
  text-align: center;
}
.cid-uHFv4oa0TX {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHFv4oa0TX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFv4oa0TX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHFv4oa0TX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHFv4oa0TX .row {
  flex-direction: row-reverse;
}
.cid-uHFv4oa0TX img {
  width: 100%;
}
.cid-txbmcdHNMi {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txbmcdHNMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbmcdHNMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txbmcdHNMi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txbmcdHNMi .row {
  flex-direction: row-reverse;
}
.cid-txbmcdHNMi img {
  width: 100%;
}
.cid-txbmcdHNMi .mbr-text {
  color: #000000;
}
.cid-uHPGWf9nqZ {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHPGWf9nqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHPGWf9nqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHPGWf9nqZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHPGWf9nqZ .row {
  flex-direction: row-reverse;
}
.cid-uHPGWf9nqZ img {
  width: 100%;
}
.cid-uHQCi3uYiG {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHQCi3uYiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHQCi3uYiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHQCi3uYiG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHQCi3uYiG .row {
  flex-direction: row-reverse;
}
.cid-uHQCi3uYiG img {
  width: 100%;
}
.cid-uHFok2Sbx3 {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHFok2Sbx3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFok2Sbx3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFok2Sbx3 .row {
  flex-direction: row-reverse;
}
.cid-uHFok2Sbx3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHFok2Sbx3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uHFok2Sbx3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uHFok2Sbx3 .mbr-text,
.cid-uHFok2Sbx3 .mbr-section-btn {
  text-align: left;
}
.cid-uHFok2Sbx3 .mbr-section-title {
  text-align: left;
}
.cid-uHFqZkxoGt {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHFqZkxoGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFqZkxoGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHFqZkxoGt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHFqZkxoGt .row {
  flex-direction: row-reverse;
}
.cid-uHFqZkxoGt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHFqZkxoGt .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaVZZYGWW {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaVZZYGWW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaVZZYGWW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaVZZYGWW .mbr-text,
.cid-txaVZZYGWW .mbr-section-btn {
  text-align: center;
}
.cid-txa92o9S80 {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa92o9S80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa92o9S80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa92o9S80 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa92o9S80 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa92o9S80 .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9cqZh5p {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9cqZh5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9cqZh5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9cqZh5p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9cqZh5p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9cqZh5p .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9ouPClx {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9ouPClx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9ouPClx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9ouPClx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9ouPClx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9ouPClx .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9wSAsbb {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9wSAsbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9wSAsbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9wSAsbb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9wSAsbb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9wSAsbb .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9CsIHHe {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9CsIHHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9CsIHHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9CsIHHe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9CsIHHe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9CsIHHe .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9JoMqsf {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9JoMqsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9JoMqsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9JoMqsf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9JoMqsf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9JoMqsf .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9RS1jGR {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9RS1jGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9RS1jGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9RS1jGR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9RS1jGR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9RS1jGR .text-wrapper {
    padding: 2rem;
  }
}
.cid-txa9YvP3aI {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txa9YvP3aI .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa9YvP3aI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txa9YvP3aI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txa9YvP3aI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txa9YvP3aI .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaa5uLJAs {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaa5uLJAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaa5uLJAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txaa5uLJAs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txaa5uLJAs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txaa5uLJAs .text-wrapper {
    padding: 2rem;
  }
}
.cid-txbjSS8vqB {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txbjSS8vqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbjSS8vqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txbjSS8vqB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txbjSS8vqB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txbjSS8vqB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHLdE7omvu {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHLdE7omvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLdE7omvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHLdE7omvu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHLdE7omvu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHLdE7omvu .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaajl6tlW {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaajl6tlW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaajl6tlW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txaajl6tlW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txaajl6tlW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txaajl6tlW .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaajl6tlW .mbr-description P {
  text-align: center;
}
.cid-txaadsgSef {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaadsgSef .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaadsgSef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txaadsgSef .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txaadsgSef img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txaadsgSef .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHLdFuLXFv {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHLdFuLXFv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLdFuLXFv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHLdFuLXFv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHLdFuLXFv .row {
  flex-direction: row-reverse;
}
.cid-uHLdFuLXFv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHLdFuLXFv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHKnAqR1sX {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHKnAqR1sX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKnAqR1sX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHKnAqR1sX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHKnAqR1sX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHKnAqR1sX .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHLcQcARDc {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHLcQcARDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLcQcARDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHLcQcARDc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHLcQcARDc .row {
  flex-direction: row-reverse;
}
.cid-uHLcQcARDc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHLcQcARDc .text-wrapper {
    padding: 2rem;
  }
}
.cid-txaf4MFE8Y {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaf4MFE8Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaf4MFE8Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-txaf4MFE8Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txaf4MFE8Y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-txaf4MFE8Y .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHPuUYXdBU {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHPuUYXdBU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHPuUYXdBU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHPuUYXdBU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHPuUYXdBU .row {
  flex-direction: row-reverse;
}
.cid-uHPuUYXdBU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHPuUYXdBU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHLe2ARBiF {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uHLe2ARBiF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLe2ARBiF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHLe2ARBiF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHLe2ARBiF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHLe2ARBiF .text-wrapper {
    padding: 2rem;
  }
}
.cid-uIFXWKRVMo {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-uIFXWKRVMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIFXWKRVMo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uIFXWKRVMo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uIFXWKRVMo .row {
  flex-direction: row-reverse;
}
.cid-uIFXWKRVMo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uIFXWKRVMo .text-wrapper {
    padding: 2rem;
  }
}
.cid-uIFXWKRVMo .mbr-text {
  color: #000000;
}
.cid-uIFXWKRVMo .mbr-description {
  color: #6592e6;
}
.cid-txaZ0A5ojQ {
  background-image: url("../../../assets/images/1669672319-8-pibig-info-p-fon-dlya-prezentatsii-vov-instagram-9.jpg");
}
.cid-txaZ0A5ojQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaZ0A5ojQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaZ0A5ojQ .mbr-text,
.cid-txaZ0A5ojQ .mbr-section-btn {
  text-align: left;
}
.cid-txaZ0A5ojQ .mbr-section-title {
  color: #000000;
}
.cid-uIHBOT2us8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #55723e;
  overflow: hidden;
}
