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: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #000000 !important;
}
.bg-success {
  background-color: #a3d24a !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1b8642 !important;
  border-color: #1b8642 !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: #0c3e1e !important;
  border-color: #0c3e1e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0c3e1e !important;
  border-color: #0c3e1e !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #a3d24a !important;
  border-color: #a3d24a !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: #759e27 !important;
  border-color: #759e27 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #759e27 !important;
  border-color: #759e27 !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: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b8642;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0c3e1e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1b8642 !important;
  border-color: #1b8642 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a3d24a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #759e27 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a3d24a !important;
  border-color: #a3d24a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #1b8642 !important;
}
.text-success {
  color: #a3d24a !important;
}
.text-info {
  color: #ffffff !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0a3118 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6c9224 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f6fbed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #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_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #1b8642 !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='%23000000' %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-t0NWmqhemW {
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0NWmqhemW .row {
  flex-direction: row-reverse;
}
.cid-t0NWmqhemW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0NWmqhemW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t0NWmqhemW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t0Ohw5nXfr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-t0Ohw5nXfr .row {
  flex-direction: row-reverse;
}
.cid-t0Ohw5nXfr .row {
  align-items: center;
}
.cid-t0Ohw5nXfr .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t0Ohw5nXfr .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-t0Ohw5nXfr .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0Ohw5nXfr .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-t0Ohw5nXfr .header-text {
    padding-right: 0;
  }
}
.cid-t0Ohw5nXfr .label-text {
  width: 100%;
  color: #111111;
}
.cid-t0Ohw5nXfr .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-t0Ohw5nXfr .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0Ohw5nXfr .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-t0Ohw5nXfr .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-t0Ohw5nXfr .iconfont-wrapper {
  color: #111111 !important;
}
.cid-t0Ohw5nXfr .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-t0Ohw5nXfr .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-sY9Us0hYcF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-t6bvyw3fcc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t6bvyw3fcc .mbr-section-head {
  margin-bottom: 50px;
}
.cid-t6bvyw3fcc .mbr-section-title {
  color: #010d4c;
  margin-bottom: 0;
}
.cid-t6bvyw3fcc .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-t6bvyw3fcc .col-video {
  height: auto;
  display: flex;
  justify-content: center;
}
.cid-t6bvyw3fcc .img-container {
  height: 300px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  width: 20%;
}
.cid-t6bvyw3fcc .img-container img {
  object-fit: cover;
  height: auto;
  width: 100%;
}
@media (min-width: 30px) {
  .cid-t6bvyw3fcc .img-container {
    height: 46px;
  }
  .cid-t6bvyw3fcc .img-container img {
    height: 100%;
  }
}
.cid-t0ZClRIyXZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0ZBL07ena {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0ZBL07ena .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-t0ZBL07ena .card {
    margin-bottom: 2rem!important;
  }
  .cid-t0ZBL07ena .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0ZBL07ena .link-wrap {
    align-items: center;
  }
}
.cid-t0ZBL07ena .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyVkP2xYRW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVkP2xYRW img,
.cid-uyVkP2xYRW .item-img {
  width: 100%;
}
.cid-uyVkP2xYRW .item:focus,
.cid-uyVkP2xYRW span:focus {
  outline: none;
}
.cid-uyVkP2xYRW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVkP2xYRW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVkP2xYRW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVkP2xYRW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVkP2xYRW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVkP2xYRW .mbr-section-title {
  color: #1b8642;
}
.cid-uyVkP2xYRW .mbr-text,
.cid-uyVkP2xYRW .mbr-section-btn {
  text-align: left;
}
.cid-uyVkP2xYRW .item-title {
  text-align: center;
}
.cid-uyVkP2xYRW .item-subtitle {
  text-align: left;
}
.cid-t0P9izQlF9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-t0P9izQlF9 .row {
  align-items: center;
}
.cid-t0P9izQlF9 .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t0P9izQlF9 .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-t0P9izQlF9 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0P9izQlF9 .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-t0P9izQlF9 .header-text {
    padding-right: 0;
  }
}
.cid-t0P9izQlF9 .label-text {
  width: 100%;
  color: #111111;
}
.cid-t0P9izQlF9 .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-t0P9izQlF9 .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0P9izQlF9 .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-t0P9izQlF9 .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-t0P9izQlF9 .iconfont-wrapper {
  color: #111111 !important;
}
.cid-t0P9izQlF9 .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-t0P9izQlF9 .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-t0P9iB0wLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-t0ZzOXUdsD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0ZOAHXvgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0ZzuZxq2F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-t0ZEUWbCsc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0ZEUWMIfF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0ZEUWMIfF .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-t0ZEUWMIfF .card {
    margin-bottom: 2rem!important;
  }
  .cid-t0ZEUWMIfF .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0ZEUWMIfF .link-wrap {
    align-items: center;
  }
}
.cid-t0ZEUWMIfF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyVlbEayqF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVlbEayqF img,
.cid-uyVlbEayqF .item-img {
  width: 100%;
}
.cid-uyVlbEayqF .item:focus,
.cid-uyVlbEayqF span:focus {
  outline: none;
}
.cid-uyVlbEayqF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVlbEayqF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVlbEayqF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVlbEayqF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVlbEayqF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVlbEayqF .mbr-section-title {
  color: #1b8642;
}
.cid-uyVlbEayqF .mbr-text,
.cid-uyVlbEayqF .mbr-section-btn {
  text-align: left;
}
.cid-uyVlbEayqF .item-title {
  text-align: center;
}
.cid-uyVlbEayqF .item-subtitle {
  text-align: left;
}
.cid-t0ZEUY5ewI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-t0ZEUY5ewI .row {
  align-items: center;
}
.cid-t0ZEUY5ewI .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t0ZEUY5ewI .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-t0ZEUY5ewI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0ZEUY5ewI .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-t0ZEUY5ewI .header-text {
    padding-right: 0;
  }
}
.cid-t0ZEUY5ewI .label-text {
  width: 100%;
  color: #111111;
}
.cid-t0ZEUY5ewI .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-t0ZEUY5ewI .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0ZEUY5ewI .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-t0ZEUY5ewI .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-t0ZEUY5ewI .iconfont-wrapper {
  color: #111111 !important;
}
.cid-t0ZEUY5ewI .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-t0ZEUY5ewI .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-t0ZEUYIBas {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-t0ZJ1iUP5u {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0ZJ1jwi7Y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0ZJ1jwi7Y .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-t0ZJ1jwi7Y .card {
    margin-bottom: 2rem!important;
  }
  .cid-t0ZJ1jwi7Y .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0ZJ1jwi7Y .link-wrap {
    align-items: center;
  }
}
.cid-t0ZJ1jwi7Y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyVliUqxCi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVliUqxCi img,
.cid-uyVliUqxCi .item-img {
  width: 100%;
}
.cid-uyVliUqxCi .item:focus,
.cid-uyVliUqxCi span:focus {
  outline: none;
}
.cid-uyVliUqxCi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVliUqxCi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVliUqxCi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVliUqxCi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVliUqxCi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVliUqxCi .mbr-section-title {
  color: #1b8642;
}
.cid-uyVliUqxCi .mbr-text,
.cid-uyVliUqxCi .mbr-section-btn {
  text-align: left;
}
.cid-uyVliUqxCi .item-title {
  text-align: center;
}
.cid-uyVliUqxCi .item-subtitle {
  text-align: left;
}
.cid-t0ZJ1kMvtZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-t0ZJ1kMvtZ .row {
  align-items: center;
}
.cid-t0ZJ1kMvtZ .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t0ZJ1kMvtZ .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-t0ZJ1kMvtZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0ZJ1kMvtZ .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-t0ZJ1kMvtZ .header-text {
    padding-right: 0;
  }
}
.cid-t0ZJ1kMvtZ .label-text {
  width: 100%;
  color: #111111;
}
.cid-t0ZJ1kMvtZ .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-t0ZJ1kMvtZ .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0ZJ1kMvtZ .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-t0ZJ1kMvtZ .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-t0ZJ1kMvtZ .iconfont-wrapper {
  color: #111111 !important;
}
.cid-t0ZJ1kMvtZ .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-t0ZJ1kMvtZ .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-t0ZJ1lnpgl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-t0ZJP8eVsJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-t0ZJP8F1CR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0ZJP8F1CR .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-t0ZJP8F1CR .card {
    margin-bottom: 2rem!important;
  }
  .cid-t0ZJP8F1CR .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0ZJP8F1CR .link-wrap {
    align-items: center;
  }
}
.cid-t0ZJP8F1CR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyVl1Vj512 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVl1Vj512 img,
.cid-uyVl1Vj512 .item-img {
  width: 100%;
}
.cid-uyVl1Vj512 .item:focus,
.cid-uyVl1Vj512 span:focus {
  outline: none;
}
.cid-uyVl1Vj512 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVl1Vj512 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVl1Vj512 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVl1Vj512 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVl1Vj512 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVl1Vj512 .mbr-section-title {
  color: #1b8642;
}
.cid-uyVl1Vj512 .mbr-text,
.cid-uyVl1Vj512 .mbr-section-btn {
  text-align: left;
}
.cid-uyVl1Vj512 .item-title {
  text-align: center;
}
.cid-uyVl1Vj512 .item-subtitle {
  text-align: left;
}
.cid-t0ZJP9XyUg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-t0ZJP9XyUg .row {
  align-items: center;
}
.cid-t0ZJP9XyUg .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t0ZJP9XyUg .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-t0ZJP9XyUg .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0ZJP9XyUg .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-t0ZJP9XyUg .header-text {
    padding-right: 0;
  }
}
.cid-t0ZJP9XyUg .label-text {
  width: 100%;
  color: #111111;
}
.cid-t0ZJP9XyUg .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-t0ZJP9XyUg .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0ZJP9XyUg .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-t0ZJP9XyUg .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-t0ZJP9XyUg .iconfont-wrapper {
  color: #111111 !important;
}
.cid-t0ZJP9XyUg .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-t0ZJP9XyUg .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-t0ZJPazPnI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uyVeUX55QR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-uyVeUXH2hv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uyVeUXH2hv .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uyVeUXH2hv .card {
    margin-bottom: 2rem!important;
  }
  .cid-uyVeUXH2hv .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uyVeUXH2hv .link-wrap {
    align-items: center;
  }
}
.cid-uyVeUXH2hv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyVl7cL67h {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVl7cL67h img,
.cid-uyVl7cL67h .item-img {
  width: 100%;
}
.cid-uyVl7cL67h .item:focus,
.cid-uyVl7cL67h span:focus {
  outline: none;
}
.cid-uyVl7cL67h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVl7cL67h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVl7cL67h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVl7cL67h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVl7cL67h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVl7cL67h .mbr-section-title {
  color: #1b8642;
}
.cid-uyVl7cL67h .mbr-text,
.cid-uyVl7cL67h .mbr-section-btn {
  text-align: left;
}
.cid-uyVl7cL67h .item-title {
  text-align: center;
}
.cid-uyVl7cL67h .item-subtitle {
  text-align: left;
}
.cid-uyVeUZ0tad {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-uyVeUZ0tad .row {
  align-items: center;
}
.cid-uyVeUZ0tad .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uyVeUZ0tad .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-uyVeUZ0tad .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uyVeUZ0tad .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-uyVeUZ0tad .header-text {
    padding-right: 0;
  }
}
.cid-uyVeUZ0tad .label-text {
  width: 100%;
  color: #111111;
}
.cid-uyVeUZ0tad .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-uyVeUZ0tad .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uyVeUZ0tad .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-uyVeUZ0tad .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-uyVeUZ0tad .iconfont-wrapper {
  color: #111111 !important;
}
.cid-uyVeUZ0tad .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-uyVeUZ0tad .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-uyVeUZJAzr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uyVhqOwX4W {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-uyVhAukfl3 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVhAukfl3 img,
.cid-uyVhAukfl3 .item-img {
  width: 100%;
}
.cid-uyVhAukfl3 .item:focus,
.cid-uyVhAukfl3 span:focus {
  outline: none;
}
.cid-uyVhAukfl3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVhAukfl3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVhAukfl3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uyVhAukfl3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVhAukfl3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uyVhAukfl3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uyVhAukfl3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVhAukfl3 .mbr-section-title {
  color: #232323;
}
.cid-uyVhAukfl3 .mbr-text,
.cid-uyVhAukfl3 .mbr-section-btn {
  text-align: left;
}
.cid-uyVhAukfl3 .item-title {
  text-align: left;
}
.cid-uyVhAukfl3 .item-subtitle {
  text-align: left;
}
.cid-uJKu9PANB5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJKu9PANB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJKu9PANB5 .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-uJKu9PANB5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uJKu9PANB5 .row {
  flex-direction: row-reverse;
}
.cid-uJKu9PANB5 img {
  width: 100%;
}
.cid-uyVhqPwDbo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-uyVhqPwDbo .row {
  align-items: center;
}
.cid-uyVhqPwDbo .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uyVhqPwDbo .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-uyVhqPwDbo .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uyVhqPwDbo .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-uyVhqPwDbo .header-text {
    padding-right: 0;
  }
}
.cid-uyVhqPwDbo .label-text {
  width: 100%;
  color: #111111;
}
.cid-uyVhqPwDbo .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-uyVhqPwDbo .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uyVhqPwDbo .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-uyVhqPwDbo .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-uyVhqPwDbo .iconfont-wrapper {
  color: #111111 !important;
}
.cid-uyVhqPwDbo .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-uyVhqPwDbo .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-uyVhqQ7pN1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uyVjIeAvfy {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/web-background-1920x1080.png");
}
.cid-uyVjIfC1bO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyVjIfC1bO img,
.cid-uyVjIfC1bO .item-img {
  width: 100%;
}
.cid-uyVjIfC1bO .item:focus,
.cid-uyVjIfC1bO span:focus {
  outline: none;
}
.cid-uyVjIfC1bO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uyVjIfC1bO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uyVjIfC1bO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uyVjIfC1bO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uyVjIfC1bO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uyVjIfC1bO .mbr-section-title {
  color: #232323;
}
.cid-uyVjIfC1bO .mbr-text,
.cid-uyVjIfC1bO .mbr-section-btn {
  text-align: left;
}
.cid-uyVjIfC1bO .item-title {
  text-align: left;
}
.cid-uyVjIfC1bO .item-subtitle {
  text-align: left;
}
.cid-uz1e5eT2TX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uz1e5eT2TX img,
.cid-uz1e5eT2TX .item-img {
  width: 100%;
}
.cid-uz1e5eT2TX .item:focus,
.cid-uz1e5eT2TX span:focus {
  outline: none;
}
.cid-uz1e5eT2TX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uz1e5eT2TX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uz1e5eT2TX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uz1e5eT2TX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uz1e5eT2TX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uz1e5eT2TX .mbr-section-title {
  color: #232323;
}
.cid-uz1e5eT2TX .mbr-text,
.cid-uz1e5eT2TX .mbr-section-btn {
  text-align: left;
}
.cid-uz1e5eT2TX .item-title {
  text-align: left;
}
.cid-uz1e5eT2TX .item-subtitle {
  text-align: left;
}
.cid-uJKBbuO2Ta {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJKBbuO2Ta img,
.cid-uJKBbuO2Ta .item-img {
  width: 100%;
}
.cid-uJKBbuO2Ta .item:focus,
.cid-uJKBbuO2Ta span:focus {
  outline: none;
}
.cid-uJKBbuO2Ta .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJKBbuO2Ta .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJKBbuO2Ta .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJKBbuO2Ta .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJKBbuO2Ta .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJKBbuO2Ta .mbr-section-title {
  color: #232323;
}
.cid-uJKBbuO2Ta .mbr-text,
.cid-uJKBbuO2Ta .mbr-section-btn {
  text-align: left;
}
.cid-uJKBbuO2Ta .item-title {
  text-align: left;
}
.cid-uJKBbuO2Ta .item-subtitle {
  text-align: left;
}
.cid-uJQ4MAdhcR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJQ4MAdhcR img,
.cid-uJQ4MAdhcR .item-img {
  width: 100%;
}
.cid-uJQ4MAdhcR .item:focus,
.cid-uJQ4MAdhcR span:focus {
  outline: none;
}
.cid-uJQ4MAdhcR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJQ4MAdhcR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJQ4MAdhcR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJQ4MAdhcR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJQ4MAdhcR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJQ4MAdhcR .mbr-section-title {
  color: #232323;
}
.cid-uJQ4MAdhcR .mbr-text,
.cid-uJQ4MAdhcR .mbr-section-btn {
  text-align: left;
}
.cid-uJQ4MAdhcR .item-title {
  text-align: left;
}
.cid-uJQ4MAdhcR .item-subtitle {
  text-align: left;
}
.cid-uJQ4NqfkkY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJQ4NqfkkY img,
.cid-uJQ4NqfkkY .item-img {
  width: 100%;
}
.cid-uJQ4NqfkkY .item:focus,
.cid-uJQ4NqfkkY span:focus {
  outline: none;
}
.cid-uJQ4NqfkkY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJQ4NqfkkY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJQ4NqfkkY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJQ4NqfkkY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJQ4NqfkkY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJQ4NqfkkY .mbr-section-title {
  color: #232323;
}
.cid-uJQ4NqfkkY .mbr-text,
.cid-uJQ4NqfkkY .mbr-section-btn {
  text-align: left;
}
.cid-uJQ4NqfkkY .item-title {
  text-align: left;
}
.cid-uJQ4NqfkkY .item-subtitle {
  text-align: left;
}
.cid-uyVjIh01ie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-background2-1920x1080.png");
}
.cid-uyVjIh01ie .row {
  align-items: center;
}
.cid-uyVjIh01ie .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uyVjIh01ie .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-uyVjIh01ie .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uyVjIh01ie .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-uyVjIh01ie .header-text {
    padding-right: 0;
  }
}
.cid-uyVjIh01ie .label-text {
  width: 100%;
  color: #111111;
}
.cid-uyVjIh01ie .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #1b8642;
}
.cid-uyVjIh01ie .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-uyVjIh01ie .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-uyVjIh01ie .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-uyVjIh01ie .iconfont-wrapper {
  color: #111111 !important;
}
.cid-uyVjIh01ie .iconfont-wrapper:hover {
  color: #000000 !important;
}
.cid-uyVjIh01ie .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-uyVjIi1fQu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
