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: #0c5ef6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0c5ef6 !important;
  border-color: #0c5ef6 !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: #063ea5 !important;
  border-color: #063ea5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #063ea5 !important;
  border-color: #063ea5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f5c8e7 !important;
  border-color: #f5c8e7 !important;
  color: #a11d78 !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: #e87fc7 !important;
  border-color: #e87fc7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #a11d78 !important;
  background-color: #e87fc7 !important;
  border-color: #e87fc7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !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: transparent;
  color: #0c5ef6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #063ea5 !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: #0c5ef6 !important;
  border-color: #0c5ef6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5c8e7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e87fc7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #a11d78 !important;
  background-color: #f5c8e7 !important;
  border-color: #f5c8e7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: 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: #0c5ef6 !important;
}
.text-secondary {
  color: #f5c8e7 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !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: #063896 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e572c1 !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: #1283bc !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: #0c5ef6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c5ef6;
  border-color: #0c5ef6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0c5ef6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d1e0fd;
}
.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: #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: #0c5ef6 !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: #0c5ef6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0c5ef6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0c5ef6;
}
.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: #0c5ef6;
  border-bottom-color: #0c5ef6;
}
.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: #0c5ef6 !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: #f5c8e7 !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='%230c5ef6' %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-uwrAB1voUy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwrAB1voUy nav.navbar {
  position: fixed;
}
.cid-uwrAB1voUy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwrAB1voUy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwrAB1voUy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwrAB1voUy .dropdown-item:hover,
.cid-uwrAB1voUy .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uwrAB1voUy .dropdown-item:hover span {
  color: white;
}
.cid-uwrAB1voUy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwrAB1voUy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwrAB1voUy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwrAB1voUy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwrAB1voUy .nav-link {
  position: relative;
}
.cid-uwrAB1voUy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwrAB1voUy .container {
    flex-wrap: wrap;
  }
}
.cid-uwrAB1voUy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwrAB1voUy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwrAB1voUy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwrAB1voUy .dropdown-menu,
.cid-uwrAB1voUy .navbar.opened {
  background: #ffffff !important;
}
.cid-uwrAB1voUy .nav-item:focus,
.cid-uwrAB1voUy .nav-link:focus {
  outline: none;
}
.cid-uwrAB1voUy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwrAB1voUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwrAB1voUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwrAB1voUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwrAB1voUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwrAB1voUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwrAB1voUy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uwrAB1voUy .navbar.opened {
  transition: all 0.3s;
}
.cid-uwrAB1voUy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwrAB1voUy .navbar .navbar-logo img {
  width: auto;
}
.cid-uwrAB1voUy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwrAB1voUy .navbar.collapsed {
  justify-content: center;
}
.cid-uwrAB1voUy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwrAB1voUy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwrAB1voUy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uwrAB1voUy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwrAB1voUy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwrAB1voUy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uwrAB1voUy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwrAB1voUy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwrAB1voUy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwrAB1voUy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwrAB1voUy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwrAB1voUy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwrAB1voUy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwrAB1voUy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uwrAB1voUy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwrAB1voUy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwrAB1voUy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwrAB1voUy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwrAB1voUy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwrAB1voUy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwrAB1voUy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwrAB1voUy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwrAB1voUy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwrAB1voUy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwrAB1voUy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwrAB1voUy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwrAB1voUy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwrAB1voUy .dropdown-item.active,
.cid-uwrAB1voUy .dropdown-item:active {
  background-color: transparent;
}
.cid-uwrAB1voUy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwrAB1voUy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwrAB1voUy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwrAB1voUy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uwrAB1voUy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwrAB1voUy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwrAB1voUy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwrAB1voUy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwrAB1voUy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwrAB1voUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwrAB1voUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwrAB1voUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwrAB1voUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwrAB1voUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwrAB1voUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwrAB1voUy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwrAB1voUy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwrAB1voUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwrAB1voUy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwrAB1voUy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwrAB1voUy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwrAB1voUy .navbar {
    height: 70px;
  }
  .cid-uwrAB1voUy .navbar.opened {
    height: auto;
  }
  .cid-uwrAB1voUy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwrAB2eLeo {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/3.jpg");
}
.cid-uwrAB2eLeo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrAB2eLeo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrAB2eLeo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwrAB2eLeo .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uwrAB2eLeo .mbr-text,
.cid-uwrAB2eLeo .mbr-section-btn {
  color: #ffffff;
}
.cid-uwrAB2eLeo .mbr-section-title {
  color: #ffffff;
}
.cid-uwrAB2MAgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrAB2MAgt .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uwrAB2MAgt .mbr-text {
  text-align: left;
}
.cid-uPFI6ZJJE1 {
  background-color: #ffffff;
}
.cid-uPFI6ZJJE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFI6ZJJE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFI6ZJJE1 .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uPFI6ZJJE1 .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFI6ZJJE1 .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uPFI6ZJJE1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uPFI6ZJJE1 .mbr-section-title {
  color: #404349;
}
.cid-uPFI6ZJJE1 .mbr-section-subtitle {
  color: #000000;
}
.cid-uPFI6ZJJE1 .mbr-text {
  color: #404349;
}
.cid-uPFI6ZJJE1 .list {
  color: #404349;
}
.cid-uPFF5E4X7U {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFF5E4X7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFF5E4X7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFF5E4X7U .row {
  justify-content: center;
}
.cid-uPFF5E4X7U .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFF5E4X7U .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFF5E4X7U .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFF5E4X7U .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFF5E4X7U .list .item-wrap:hover,
.cid-uPFF5E4X7U .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFF5E4X7U .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFF5E4X7U .mbr-section-title {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-text {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-section-title,
.cid-uPFF5E4X7U .mbr-section-btn {
  text-align: left;
}
.cid-uwryLMWWRO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwryLMWWRO nav.navbar {
  position: fixed;
}
.cid-uwryLMWWRO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwryLMWWRO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwryLMWWRO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwryLMWWRO .dropdown-item:hover,
.cid-uwryLMWWRO .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uwryLMWWRO .dropdown-item:hover span {
  color: white;
}
.cid-uwryLMWWRO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwryLMWWRO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwryLMWWRO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwryLMWWRO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwryLMWWRO .nav-link {
  position: relative;
}
.cid-uwryLMWWRO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwryLMWWRO .container {
    flex-wrap: wrap;
  }
}
.cid-uwryLMWWRO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwryLMWWRO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwryLMWWRO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwryLMWWRO .dropdown-menu,
.cid-uwryLMWWRO .navbar.opened {
  background: #ffffff !important;
}
.cid-uwryLMWWRO .nav-item:focus,
.cid-uwryLMWWRO .nav-link:focus {
  outline: none;
}
.cid-uwryLMWWRO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwryLMWWRO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwryLMWWRO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwryLMWWRO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwryLMWWRO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwryLMWWRO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwryLMWWRO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uwryLMWWRO .navbar.opened {
  transition: all 0.3s;
}
.cid-uwryLMWWRO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwryLMWWRO .navbar .navbar-logo img {
  width: auto;
}
.cid-uwryLMWWRO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwryLMWWRO .navbar.collapsed {
  justify-content: center;
}
.cid-uwryLMWWRO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwryLMWWRO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwryLMWWRO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uwryLMWWRO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwryLMWWRO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwryLMWWRO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uwryLMWWRO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwryLMWWRO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwryLMWWRO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwryLMWWRO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwryLMWWRO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwryLMWWRO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwryLMWWRO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwryLMWWRO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uwryLMWWRO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwryLMWWRO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwryLMWWRO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwryLMWWRO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwryLMWWRO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwryLMWWRO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwryLMWWRO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwryLMWWRO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwryLMWWRO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwryLMWWRO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwryLMWWRO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwryLMWWRO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwryLMWWRO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwryLMWWRO .dropdown-item.active,
.cid-uwryLMWWRO .dropdown-item:active {
  background-color: transparent;
}
.cid-uwryLMWWRO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwryLMWWRO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwryLMWWRO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwryLMWWRO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uwryLMWWRO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwryLMWWRO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwryLMWWRO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwryLMWWRO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwryLMWWRO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwryLMWWRO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwryLMWWRO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwryLMWWRO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwryLMWWRO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwryLMWWRO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwryLMWWRO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwryLMWWRO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwryLMWWRO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwryLMWWRO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwryLMWWRO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwryLMWWRO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwryLMWWRO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwryLMWWRO .navbar {
    height: 70px;
  }
  .cid-uwryLMWWRO .navbar.opened {
    height: auto;
  }
  .cid-uwryLMWWRO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwryLOf9q7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/2.jpg");
}
.cid-uwryLOf9q7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwryLOf9q7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwryLOf9q7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwryLOf9q7 .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uwryLOf9q7 .mbr-text,
.cid-uwryLOf9q7 .mbr-section-btn {
  color: #ffffff;
}
.cid-uwryLOf9q7 .mbr-section-title {
  color: #ffffff;
}
.cid-uwryLPHYfW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwryLPHYfW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uwryLPHYfW .mbr-text {
  text-align: left;
}
.cid-uPFHW5ick5 {
  background-color: #ffffff;
}
.cid-uPFHW5ick5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFHW5ick5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFHW5ick5 .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uPFHW5ick5 .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFHW5ick5 .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uPFHW5ick5 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uPFHW5ick5 .mbr-section-title {
  color: #404349;
}
.cid-uPFHW5ick5 .mbr-section-subtitle {
  color: #000000;
}
.cid-uPFHW5ick5 .mbr-text {
  color: #404349;
}
.cid-uPFHW5ick5 .list {
  color: #404349;
}
.cid-uPFF5E4X7U {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFF5E4X7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFF5E4X7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFF5E4X7U .row {
  justify-content: center;
}
.cid-uPFF5E4X7U .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFF5E4X7U .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFF5E4X7U .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFF5E4X7U .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFF5E4X7U .list .item-wrap:hover,
.cid-uPFF5E4X7U .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFF5E4X7U .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFF5E4X7U .mbr-section-title {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-text {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-section-title,
.cid-uPFF5E4X7U .mbr-section-btn {
  text-align: left;
}
.cid-uwrbryUIHI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwrbryUIHI nav.navbar {
  position: fixed;
}
.cid-uwrbryUIHI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwrbryUIHI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwrbryUIHI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwrbryUIHI .dropdown-item:hover,
.cid-uwrbryUIHI .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uwrbryUIHI .dropdown-item:hover span {
  color: white;
}
.cid-uwrbryUIHI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwrbryUIHI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwrbryUIHI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwrbryUIHI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwrbryUIHI .nav-link {
  position: relative;
}
.cid-uwrbryUIHI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwrbryUIHI .container {
    flex-wrap: wrap;
  }
}
.cid-uwrbryUIHI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwrbryUIHI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwrbryUIHI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwrbryUIHI .dropdown-menu,
.cid-uwrbryUIHI .navbar.opened {
  background: #ffffff !important;
}
.cid-uwrbryUIHI .nav-item:focus,
.cid-uwrbryUIHI .nav-link:focus {
  outline: none;
}
.cid-uwrbryUIHI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwrbryUIHI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwrbryUIHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwrbryUIHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwrbryUIHI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwrbryUIHI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwrbryUIHI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uwrbryUIHI .navbar.opened {
  transition: all 0.3s;
}
.cid-uwrbryUIHI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwrbryUIHI .navbar .navbar-logo img {
  width: auto;
}
.cid-uwrbryUIHI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwrbryUIHI .navbar.collapsed {
  justify-content: center;
}
.cid-uwrbryUIHI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwrbryUIHI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwrbryUIHI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uwrbryUIHI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwrbryUIHI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwrbryUIHI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uwrbryUIHI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwrbryUIHI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwrbryUIHI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwrbryUIHI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwrbryUIHI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwrbryUIHI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwrbryUIHI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwrbryUIHI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uwrbryUIHI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwrbryUIHI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwrbryUIHI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwrbryUIHI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwrbryUIHI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwrbryUIHI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwrbryUIHI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwrbryUIHI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwrbryUIHI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwrbryUIHI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwrbryUIHI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwrbryUIHI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwrbryUIHI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwrbryUIHI .dropdown-item.active,
.cid-uwrbryUIHI .dropdown-item:active {
  background-color: transparent;
}
.cid-uwrbryUIHI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwrbryUIHI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwrbryUIHI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwrbryUIHI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uwrbryUIHI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwrbryUIHI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwrbryUIHI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwrbryUIHI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwrbryUIHI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwrbryUIHI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwrbryUIHI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwrbryUIHI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwrbryUIHI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwrbryUIHI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwrbryUIHI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwrbryUIHI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwrbryUIHI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwrbryUIHI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwrbryUIHI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwrbryUIHI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwrbryUIHI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwrbryUIHI .navbar {
    height: 70px;
  }
  .cid-uwrbryUIHI .navbar.opened {
    height: auto;
  }
  .cid-uwrbryUIHI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwrfASLphi {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1.jpg");
}
.cid-uwrfASLphi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrfASLphi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrfASLphi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwrfASLphi .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uwrfASLphi .mbr-text,
.cid-uwrfASLphi .mbr-section-btn {
  color: #ffffff;
}
.cid-uwrfASLphi .mbr-section-title {
  color: #ffffff;
}
.cid-uwrfGDMU6s {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwrfGDMU6s .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uwrfGDMU6s .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uwrfGDMU6s .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb5b5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uwrfGDMU6s .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uwrfGDMU6s .mbr-text {
  color: #3d5943;
}
.cid-uwrpsqbWeg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrpsqbWeg .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uwrpsqbWeg .mbr-text {
  text-align: left;
}
.cid-uwrpt3riUj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrpt3riUj .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFG7OVdlc {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uPFG7OVdlc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFG7OVdlc .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-uPFG7OVdlc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPFG7OVdlc .row {
  flex-direction: row-reverse;
}
.cid-uPFG7OVdlc img {
  width: 100%;
}
.cid-uwrfIrBqBw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrfIrBqBw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrfIrBqBw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrfIrBqBw .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uwrfIrBqBw .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uwrfIrBqBw .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uwrfIrBqBw .mbr-section-title {
  color: #131313;
}
.cid-uwrfIrBqBw .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uwrfIrBqBw .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uwrfIrBqBw .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uwrfIrBqBw .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uwrfIrBqBw .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uwrfIrBqBw .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uwrfIrBqBw .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uwrfIrBqBw .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uwrfIrBqBw .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uwrfIrBqBw .card-title {
  color: #131313;
}
.cid-uwrfIrBqBw .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uwrfIrBqBw .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uwrfIrBqBw .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uwrfIrBqBw .card-link {
    margin-top: 15px;
  }
}
.cid-uwrfIrBqBw .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uwrfIrBqBw .card-title,
.cid-uwrfIrBqBw .iconfont-wrapper {
  text-align: center;
}
.cid-uwrfIrBqBw .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uwrgFvXZ7u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrgFvXZ7u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrgFvXZ7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrgFvXZ7u .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uwrgFvXZ7u .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uwrgFvXZ7u .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uwrgFvXZ7u .mbr-section-title {
  color: #131313;
}
.cid-uwrgFvXZ7u .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uwrgFvXZ7u .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uwrgFvXZ7u .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uwrgFvXZ7u .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uwrgFvXZ7u .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwrgFvXZ7u .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uwrgFvXZ7u .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-uwrgFvXZ7u .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uwrgFvXZ7u .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-uwrgFvXZ7u .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-uwrgFvXZ7u .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uwrgFvXZ7u .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uwrgFvXZ7u .content-wrap {
    margin-top: 0;
  }
}
.cid-uwrgFvXZ7u .card-title {
  color: #131313;
}
.cid-uwrgFvXZ7u .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uwrgFvXZ7u .card-text {
    margin-top: 15px;
  }
}
.cid-uwrgFvXZ7u .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uwrgFvXZ7u .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uwrgFvXZ7u .card-link {
    margin-top: 15px;
  }
}
.cid-uwrgFvXZ7u .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uwrgOrDmbM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrgOrDmbM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrgOrDmbM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrgOrDmbM .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uwrgOrDmbM .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uwrgOrDmbM .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uwrgOrDmbM .mbr-section-title {
  color: #131313;
}
.cid-uwrgOrDmbM .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uwrgOrDmbM .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uwrgOrDmbM .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uwrgOrDmbM .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uwrgOrDmbM .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uwrgOrDmbM .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uwrgOrDmbM .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uwrgOrDmbM .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uwrgOrDmbM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uwrgOrDmbM .card-title {
  color: #131313;
}
.cid-uwrgOrDmbM .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uwrgOrDmbM .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uwrgOrDmbM .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uwrgOrDmbM .card-link {
    margin-top: 15px;
  }
}
.cid-uwrgOrDmbM .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uwrgOrDmbM .card-title,
.cid-uwrgOrDmbM .iconfont-wrapper {
  text-align: center;
}
.cid-uwrqyWxZff {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwrqyWxZff blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uwrqyWxZff .mbr-section-title {
  text-align: center;
}
.cid-uwrgQGVtrU {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uwrgQGVtrU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrgQGVtrU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrgQGVtrU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uwrgQGVtrU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uwrgQGVtrU .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uwrgQGVtrU .panel-body,
.cid-uwrgQGVtrU .card-header {
  padding: 1rem 0;
}
.cid-uwrgQGVtrU .panel-title-edit {
  color: #000000;
}
.cid-uwrqKCOnev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwrmRIY7Bu {
  background-color: #ffffff;
}
.cid-uwrmRIY7Bu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwrmRIY7Bu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwrmRIY7Bu .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uwrmRIY7Bu .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uwrmRIY7Bu .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uwrmRIY7Bu .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uwrmRIY7Bu .mbr-section-title {
  color: #404349;
}
.cid-uwrmRIY7Bu .mbr-section-subtitle {
  color: #000000;
}
.cid-uwrmRIY7Bu .mbr-text {
  color: #404349;
}
.cid-uwrmRIY7Bu .list {
  color: #404349;
}
.cid-uPFF5E4X7U {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFF5E4X7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFF5E4X7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFF5E4X7U .row {
  justify-content: center;
}
.cid-uPFF5E4X7U .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFF5E4X7U .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFF5E4X7U .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFF5E4X7U .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFF5E4X7U .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFF5E4X7U .list .item-wrap:hover,
.cid-uPFF5E4X7U .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFF5E4X7U .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFF5E4X7U .mbr-section-title {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-text {
  color: #151e11;
}
.cid-uPFF5E4X7U .mbr-section-title,
.cid-uPFF5E4X7U .mbr-section-btn {
  text-align: left;
}
.cid-uPFIEddH3u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPFIEddH3u nav.navbar {
  position: fixed;
}
.cid-uPFIEddH3u .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFIEddH3u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPFIEddH3u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPFIEddH3u .dropdown-item:hover,
.cid-uPFIEddH3u .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uPFIEddH3u .dropdown-item:hover span {
  color: white;
}
.cid-uPFIEddH3u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPFIEddH3u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPFIEddH3u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPFIEddH3u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPFIEddH3u .nav-link {
  position: relative;
}
.cid-uPFIEddH3u .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFIEddH3u .container {
    flex-wrap: wrap;
  }
}
.cid-uPFIEddH3u .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFIEddH3u .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uPFIEddH3u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPFIEddH3u .dropdown-menu,
.cid-uPFIEddH3u .navbar.opened {
  background: #ffffff !important;
}
.cid-uPFIEddH3u .nav-item:focus,
.cid-uPFIEddH3u .nav-link:focus {
  outline: none;
}
.cid-uPFIEddH3u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPFIEddH3u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPFIEddH3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPFIEddH3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFIEddH3u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPFIEddH3u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPFIEddH3u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPFIEddH3u .navbar.opened {
  transition: all 0.3s;
}
.cid-uPFIEddH3u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPFIEddH3u .navbar .navbar-logo img {
  width: auto;
}
.cid-uPFIEddH3u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPFIEddH3u .navbar.collapsed {
  justify-content: center;
}
.cid-uPFIEddH3u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPFIEddH3u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPFIEddH3u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPFIEddH3u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPFIEddH3u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPFIEddH3u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPFIEddH3u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPFIEddH3u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPFIEddH3u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPFIEddH3u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPFIEddH3u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPFIEddH3u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPFIEddH3u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPFIEddH3u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPFIEddH3u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPFIEddH3u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPFIEddH3u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPFIEddH3u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPFIEddH3u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPFIEddH3u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPFIEddH3u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uPFIEddH3u .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPFIEddH3u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPFIEddH3u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPFIEddH3u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPFIEddH3u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPFIEddH3u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPFIEddH3u .dropdown-item.active,
.cid-uPFIEddH3u .dropdown-item:active {
  background-color: transparent;
}
.cid-uPFIEddH3u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPFIEddH3u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPFIEddH3u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPFIEddH3u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPFIEddH3u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPFIEddH3u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPFIEddH3u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPFIEddH3u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPFIEddH3u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPFIEddH3u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uPFIEddH3u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPFIEddH3u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFIEddH3u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFIEddH3u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPFIEddH3u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFIEddH3u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPFIEddH3u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPFIEddH3u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFIEddH3u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPFIEddH3u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPFIEddH3u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPFIEddH3u .navbar {
    height: 70px;
  }
  .cid-uPFIEddH3u .navbar.opened {
    height: auto;
  }
  .cid-uPFIEddH3u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPFIEe2kbk {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/4.jpg");
}
.cid-uPFIEe2kbk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEe2kbk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEe2kbk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPFIEe2kbk .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uPFIEe2kbk .mbr-text,
.cid-uPFIEe2kbk .mbr-section-btn {
  color: #ffffff;
}
.cid-uPFIEe2kbk .mbr-section-title {
  color: #ffffff;
}
.cid-uPFIEeBHWD {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFIEeBHWD .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uPFIEeBHWD .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uPFIEeBHWD .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb5b5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uPFIEeBHWD .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uPFIEeBHWD .mbr-text {
  color: #3d5943;
}
.cid-uPFIEfhQRk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFIEfhQRk .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uPFIEfhQRk .mbr-text {
  text-align: left;
}
.cid-uPFIEfTYLn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFIEfTYLn .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFIEggLLt {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uPFIEggLLt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEggLLt .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-uPFIEggLLt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPFIEggLLt .row {
  flex-direction: row-reverse;
}
.cid-uPFIEggLLt img {
  width: 100%;
}
.cid-uPFIEgK8CA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFIEgK8CA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEgK8CA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEgK8CA .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFIEgK8CA .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEgK8CA .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFIEgK8CA .mbr-section-title {
  color: #131313;
}
.cid-uPFIEgK8CA .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFIEgK8CA .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFIEgK8CA .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFIEgK8CA .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFIEgK8CA .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFIEgK8CA .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFIEgK8CA .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFIEgK8CA .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFIEgK8CA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFIEgK8CA .card-title {
  color: #131313;
}
.cid-uPFIEgK8CA .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uPFIEgK8CA .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFIEgK8CA .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEgK8CA .card-link {
    margin-top: 15px;
  }
}
.cid-uPFIEgK8CA .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFIEgK8CA .card-title,
.cid-uPFIEgK8CA .iconfont-wrapper {
  text-align: center;
}
.cid-uPFIEgK8CA .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uPFIEhvsjs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFIEhvsjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEhvsjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEhvsjs .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFIEhvsjs .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEhvsjs .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFIEhvsjs .mbr-section-title {
  color: #131313;
}
.cid-uPFIEhvsjs .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFIEhvsjs .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFIEhvsjs .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFIEhvsjs .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFIEhvsjs .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uPFIEhvsjs .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEhvsjs .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-uPFIEhvsjs .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFIEhvsjs .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-uPFIEhvsjs .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-uPFIEhvsjs .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFIEhvsjs .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uPFIEhvsjs .content-wrap {
    margin-top: 0;
  }
}
.cid-uPFIEhvsjs .card-title {
  color: #131313;
}
.cid-uPFIEhvsjs .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFIEhvsjs .card-text {
    margin-top: 15px;
  }
}
.cid-uPFIEhvsjs .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFIEhvsjs .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPFIEhvsjs .card-link {
    margin-top: 15px;
  }
}
.cid-uPFIEhvsjs .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFIEibmjQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFIEibmjQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEibmjQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEibmjQ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFIEibmjQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEibmjQ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFIEibmjQ .mbr-section-title {
  color: #131313;
}
.cid-uPFIEibmjQ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uPFIEibmjQ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFIEibmjQ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFIEibmjQ .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFIEibmjQ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFIEibmjQ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFIEibmjQ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFIEibmjQ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFIEibmjQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFIEibmjQ .card-title {
  color: #131313;
}
.cid-uPFIEibmjQ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uPFIEibmjQ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFIEibmjQ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFIEibmjQ .card-link {
    margin-top: 15px;
  }
}
.cid-uPFIEibmjQ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFIEibmjQ .card-title,
.cid-uPFIEibmjQ .iconfont-wrapper {
  text-align: center;
}
.cid-uPFIEiVdYF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPFIEiVdYF blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uPFIEiVdYF .mbr-section-title {
  text-align: center;
}
.cid-uPFIEjmFN7 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPFIEjmFN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEjmFN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEjmFN7 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFIEjmFN7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFIEjmFN7 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFIEjmFN7 .panel-body,
.cid-uPFIEjmFN7 .card-header {
  padding: 1rem 0;
}
.cid-uPFIEjmFN7 .panel-title-edit {
  color: #000000;
}
.cid-uPFIEkv1Zu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRfJ3r8I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPFRfJ3r8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRfJ3r8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRfJ3r8I .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFRfJ3r8I .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFRfJ3r8I .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFRfJ3r8I .panel-body,
.cid-uPFRfJ3r8I .card-header {
  padding: 1rem 0;
}
.cid-uPFRfJ3r8I .panel-title-edit {
  color: #000000;
}
.cid-uPFIElcUxb {
  background-color: #ffffff;
}
.cid-uPFIElcUxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIElcUxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIElcUxb .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uPFIElcUxb .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFIElcUxb .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uPFIElcUxb .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uPFIElcUxb .mbr-section-title {
  color: #404349;
}
.cid-uPFIElcUxb .mbr-section-subtitle {
  color: #000000;
}
.cid-uPFIElcUxb .mbr-text {
  color: #404349;
}
.cid-uPFIElcUxb .list {
  color: #404349;
}
.cid-uPFIEm5aDV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFIEm5aDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFIEm5aDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFIEm5aDV .row {
  justify-content: center;
}
.cid-uPFIEm5aDV .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFIEm5aDV .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFIEm5aDV .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFIEm5aDV .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFIEm5aDV .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFIEm5aDV .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFIEm5aDV .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFIEm5aDV .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFIEm5aDV .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFIEm5aDV .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFIEm5aDV .list .item-wrap:hover,
.cid-uPFIEm5aDV .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFIEm5aDV .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFIEm5aDV .mbr-section-title {
  color: #151e11;
}
.cid-uPFIEm5aDV .mbr-text {
  color: #151e11;
}
.cid-uPFIEm5aDV .mbr-section-title,
.cid-uPFIEm5aDV .mbr-section-btn {
  text-align: left;
}
.cid-uPFRVmgZJR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPFRVmgZJR nav.navbar {
  position: fixed;
}
.cid-uPFRVmgZJR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFRVmgZJR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPFRVmgZJR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPFRVmgZJR .dropdown-item:hover,
.cid-uPFRVmgZJR .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uPFRVmgZJR .dropdown-item:hover span {
  color: white;
}
.cid-uPFRVmgZJR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPFRVmgZJR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPFRVmgZJR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPFRVmgZJR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPFRVmgZJR .nav-link {
  position: relative;
}
.cid-uPFRVmgZJR .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFRVmgZJR .container {
    flex-wrap: wrap;
  }
}
.cid-uPFRVmgZJR .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFRVmgZJR .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uPFRVmgZJR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPFRVmgZJR .dropdown-menu,
.cid-uPFRVmgZJR .navbar.opened {
  background: #ffffff !important;
}
.cid-uPFRVmgZJR .nav-item:focus,
.cid-uPFRVmgZJR .nav-link:focus {
  outline: none;
}
.cid-uPFRVmgZJR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPFRVmgZJR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPFRVmgZJR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPFRVmgZJR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFRVmgZJR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPFRVmgZJR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPFRVmgZJR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPFRVmgZJR .navbar.opened {
  transition: all 0.3s;
}
.cid-uPFRVmgZJR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPFRVmgZJR .navbar .navbar-logo img {
  width: auto;
}
.cid-uPFRVmgZJR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPFRVmgZJR .navbar.collapsed {
  justify-content: center;
}
.cid-uPFRVmgZJR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPFRVmgZJR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPFRVmgZJR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPFRVmgZJR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPFRVmgZJR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPFRVmgZJR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPFRVmgZJR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPFRVmgZJR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPFRVmgZJR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPFRVmgZJR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPFRVmgZJR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPFRVmgZJR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPFRVmgZJR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPFRVmgZJR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPFRVmgZJR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPFRVmgZJR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPFRVmgZJR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPFRVmgZJR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPFRVmgZJR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPFRVmgZJR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPFRVmgZJR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uPFRVmgZJR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPFRVmgZJR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPFRVmgZJR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPFRVmgZJR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPFRVmgZJR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPFRVmgZJR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPFRVmgZJR .dropdown-item.active,
.cid-uPFRVmgZJR .dropdown-item:active {
  background-color: transparent;
}
.cid-uPFRVmgZJR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPFRVmgZJR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPFRVmgZJR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPFRVmgZJR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPFRVmgZJR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPFRVmgZJR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPFRVmgZJR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPFRVmgZJR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPFRVmgZJR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPFRVmgZJR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uPFRVmgZJR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPFRVmgZJR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFRVmgZJR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFRVmgZJR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPFRVmgZJR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFRVmgZJR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPFRVmgZJR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPFRVmgZJR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFRVmgZJR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPFRVmgZJR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPFRVmgZJR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPFRVmgZJR .navbar {
    height: 70px;
  }
  .cid-uPFRVmgZJR .navbar.opened {
    height: auto;
  }
  .cid-uPFRVmgZJR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPFRVnkz5I {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/5.jpg");
}
.cid-uPFRVnkz5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVnkz5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVnkz5I .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPFRVnkz5I .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uPFRVnkz5I .mbr-text,
.cid-uPFRVnkz5I .mbr-section-btn {
  color: #ffffff;
}
.cid-uPFRVnkz5I .mbr-section-title {
  color: #ffffff;
}
.cid-uPFRVnWHVO {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFRVnWHVO .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uPFRVnWHVO .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uPFRVnWHVO .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb5b5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uPFRVnWHVO .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uPFRVnWHVO .mbr-text {
  color: #3d5943;
}
.cid-uPFRVomGMN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVomGMN .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uPFRVomGMN .mbr-text {
  text-align: left;
}
.cid-uPFRVoJhcM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVoJhcM .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFRVpemK1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uPFRVpemK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVpemK1 .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-uPFRVpemK1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPFRVpemK1 .row {
  flex-direction: row-reverse;
}
.cid-uPFRVpemK1 img {
  width: 100%;
}
.cid-uPFRVpKsfg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVpKsfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVpKsfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVpKsfg .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFRVpKsfg .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVpKsfg .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFRVpKsfg .mbr-section-title {
  color: #131313;
}
.cid-uPFRVpKsfg .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFRVpKsfg .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFRVpKsfg .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFRVpKsfg .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFRVpKsfg .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFRVpKsfg .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFRVpKsfg .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFRVpKsfg .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFRVpKsfg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFRVpKsfg .card-title {
  color: #131313;
}
.cid-uPFRVpKsfg .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uPFRVpKsfg .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFRVpKsfg .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVpKsfg .card-link {
    margin-top: 15px;
  }
}
.cid-uPFRVpKsfg .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFRVpKsfg .card-title,
.cid-uPFRVpKsfg .iconfont-wrapper {
  text-align: center;
}
.cid-uPFRVpKsfg .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uPFRVqVAR2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVqVAR2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVqVAR2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVqVAR2 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFRVqVAR2 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVqVAR2 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFRVqVAR2 .mbr-section-title {
  color: #131313;
}
.cid-uPFRVqVAR2 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFRVqVAR2 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFRVqVAR2 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFRVqVAR2 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFRVqVAR2 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uPFRVqVAR2 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVqVAR2 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-uPFRVqVAR2 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFRVqVAR2 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-uPFRVqVAR2 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-uPFRVqVAR2 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFRVqVAR2 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uPFRVqVAR2 .content-wrap {
    margin-top: 0;
  }
}
.cid-uPFRVqVAR2 .card-title {
  color: #131313;
}
.cid-uPFRVqVAR2 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFRVqVAR2 .card-text {
    margin-top: 15px;
  }
}
.cid-uPFRVqVAR2 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFRVqVAR2 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPFRVqVAR2 .card-link {
    margin-top: 15px;
  }
}
.cid-uPFRVqVAR2 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFRVsGetL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVsGetL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVsGetL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVsGetL .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFRVsGetL .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVsGetL .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFRVsGetL .mbr-section-title {
  color: #131313;
}
.cid-uPFRVsGetL .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uPFRVsGetL .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFRVsGetL .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFRVsGetL .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFRVsGetL .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFRVsGetL .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFRVsGetL .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFRVsGetL .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFRVsGetL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFRVsGetL .card-title {
  color: #131313;
}
.cid-uPFRVsGetL .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uPFRVsGetL .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFRVsGetL .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFRVsGetL .card-link {
    margin-top: 15px;
  }
}
.cid-uPFRVsGetL .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFRVsGetL .card-title,
.cid-uPFRVsGetL .iconfont-wrapper {
  text-align: center;
}
.cid-uPFRVuD3mB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPFRVuD3mB blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uPFRVuD3mB .mbr-section-title {
  text-align: center;
}
.cid-uPFRVvlCGa {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPFRVvlCGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVvlCGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVvlCGa .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFRVvlCGa .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFRVvlCGa .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFRVvlCGa .panel-body,
.cid-uPFRVvlCGa .card-header {
  padding: 1rem 0;
}
.cid-uPFRVvlCGa .panel-title-edit {
  color: #000000;
}
.cid-uPFRVxCXgO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFRVxCXgO .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFRVzrqVU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPFRVzrqVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVzrqVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVzrqVU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFRVzrqVU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFRVzrqVU .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFRVzrqVU .panel-body,
.cid-uPFRVzrqVU .card-header {
  padding: 1rem 0;
}
.cid-uPFRVzrqVU .panel-title-edit {
  color: #000000;
}
.cid-uPFRVAa1AI {
  background-color: #ffffff;
}
.cid-uPFRVAa1AI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVAa1AI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVAa1AI .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uPFRVAa1AI .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFRVAa1AI .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uPFRVAa1AI .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uPFRVAa1AI .mbr-section-title {
  color: #404349;
}
.cid-uPFRVAa1AI .mbr-section-subtitle {
  color: #000000;
}
.cid-uPFRVAa1AI .mbr-text {
  color: #404349;
}
.cid-uPFRVAa1AI .list {
  color: #404349;
}
.cid-uPFRVCkf2X {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFRVCkf2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFRVCkf2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFRVCkf2X .row {
  justify-content: center;
}
.cid-uPFRVCkf2X .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFRVCkf2X .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFRVCkf2X .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFRVCkf2X .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFRVCkf2X .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFRVCkf2X .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFRVCkf2X .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFRVCkf2X .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFRVCkf2X .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFRVCkf2X .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFRVCkf2X .list .item-wrap:hover,
.cid-uPFRVCkf2X .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFRVCkf2X .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFRVCkf2X .mbr-section-title {
  color: #151e11;
}
.cid-uPFRVCkf2X .mbr-text {
  color: #151e11;
}
.cid-uPFRVCkf2X .mbr-section-title,
.cid-uPFRVCkf2X .mbr-section-btn {
  text-align: left;
}
.cid-uPFWeYniJB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPFWeYniJB nav.navbar {
  position: fixed;
}
.cid-uPFWeYniJB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFWeYniJB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPFWeYniJB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPFWeYniJB .dropdown-item:hover,
.cid-uPFWeYniJB .dropdown-item:focus {
  background: #0c5ef6 !important;
  color: white !important;
}
.cid-uPFWeYniJB .dropdown-item:hover span {
  color: white;
}
.cid-uPFWeYniJB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPFWeYniJB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPFWeYniJB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPFWeYniJB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPFWeYniJB .nav-link {
  position: relative;
}
.cid-uPFWeYniJB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFWeYniJB .container {
    flex-wrap: wrap;
  }
}
.cid-uPFWeYniJB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPFWeYniJB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uPFWeYniJB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPFWeYniJB .dropdown-menu,
.cid-uPFWeYniJB .navbar.opened {
  background: #ffffff !important;
}
.cid-uPFWeYniJB .nav-item:focus,
.cid-uPFWeYniJB .nav-link:focus {
  outline: none;
}
.cid-uPFWeYniJB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPFWeYniJB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPFWeYniJB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPFWeYniJB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPFWeYniJB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPFWeYniJB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPFWeYniJB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPFWeYniJB .navbar.opened {
  transition: all 0.3s;
}
.cid-uPFWeYniJB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPFWeYniJB .navbar .navbar-logo img {
  width: auto;
}
.cid-uPFWeYniJB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPFWeYniJB .navbar.collapsed {
  justify-content: center;
}
.cid-uPFWeYniJB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPFWeYniJB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPFWeYniJB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPFWeYniJB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPFWeYniJB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPFWeYniJB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPFWeYniJB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPFWeYniJB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPFWeYniJB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPFWeYniJB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPFWeYniJB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPFWeYniJB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPFWeYniJB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPFWeYniJB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPFWeYniJB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPFWeYniJB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPFWeYniJB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPFWeYniJB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPFWeYniJB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPFWeYniJB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPFWeYniJB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uPFWeYniJB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPFWeYniJB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPFWeYniJB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPFWeYniJB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPFWeYniJB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPFWeYniJB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPFWeYniJB .dropdown-item.active,
.cid-uPFWeYniJB .dropdown-item:active {
  background-color: transparent;
}
.cid-uPFWeYniJB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPFWeYniJB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPFWeYniJB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPFWeYniJB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPFWeYniJB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPFWeYniJB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPFWeYniJB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPFWeYniJB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPFWeYniJB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPFWeYniJB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uPFWeYniJB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPFWeYniJB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFWeYniJB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPFWeYniJB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPFWeYniJB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFWeYniJB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPFWeYniJB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPFWeYniJB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPFWeYniJB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPFWeYniJB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPFWeYniJB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPFWeYniJB .navbar {
    height: 70px;
  }
  .cid-uPFWeYniJB .navbar.opened {
    height: auto;
  }
  .cid-uPFWeYniJB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPFWeZqPIE {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/6.jpg");
}
.cid-uPFWeZqPIE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWeZqPIE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWeZqPIE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPFWeZqPIE .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uPFWeZqPIE .mbr-text,
.cid-uPFWeZqPIE .mbr-section-btn {
  color: #ffffff;
}
.cid-uPFWeZqPIE .mbr-section-title {
  color: #ffffff;
}
.cid-uPFWf09Z46 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFWf09Z46 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uPFWf09Z46 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uPFWf09Z46 .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffb5b5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uPFWf09Z46 .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uPFWf09Z46 .mbr-text {
  color: #3d5943;
}
.cid-uPFWf0FZOJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf0FZOJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uPFWf0FZOJ .mbr-text {
  text-align: left;
}
.cid-uPFZnSppj3 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPFZnSppj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFZnSppj3 .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-uPFZnSppj3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPFZnSppj3 .row {
  flex-direction: row-reverse;
}
.cid-uPFZnSppj3 img {
  width: 100%;
}
.cid-uPFWf1aWTK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf1aWTK .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFWf1yVyB {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-uPFWf1yVyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf1yVyB .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-uPFWf1yVyB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPFWf1yVyB .row {
  flex-direction: row-reverse;
}
.cid-uPFWf1yVyB img {
  width: 100%;
}
.cid-uPFWf27nlL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf27nlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf27nlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf27nlL .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFWf27nlL .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf27nlL .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFWf27nlL .mbr-section-title {
  color: #131313;
}
.cid-uPFWf27nlL .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFWf27nlL .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFWf27nlL .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFWf27nlL .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFWf27nlL .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFWf27nlL .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFWf27nlL .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFWf27nlL .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFWf27nlL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFWf27nlL .card-title {
  color: #131313;
}
.cid-uPFWf27nlL .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uPFWf27nlL .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFWf27nlL .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf27nlL .card-link {
    margin-top: 15px;
  }
}
.cid-uPFWf27nlL .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFWf27nlL .card-title,
.cid-uPFWf27nlL .iconfont-wrapper {
  text-align: center;
}
.cid-uPFWf27nlL .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uPFWf2Pkbs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf2Pkbs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf2Pkbs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf2Pkbs .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFWf2Pkbs .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf2Pkbs .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFWf2Pkbs .mbr-section-title {
  color: #131313;
}
.cid-uPFWf2Pkbs .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-uPFWf2Pkbs .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFWf2Pkbs .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFWf2Pkbs .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFWf2Pkbs .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uPFWf2Pkbs .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf2Pkbs .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-uPFWf2Pkbs .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFWf2Pkbs .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-uPFWf2Pkbs .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-uPFWf2Pkbs .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFWf2Pkbs .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uPFWf2Pkbs .content-wrap {
    margin-top: 0;
  }
}
.cid-uPFWf2Pkbs .card-title {
  color: #131313;
}
.cid-uPFWf2Pkbs .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFWf2Pkbs .card-text {
    margin-top: 15px;
  }
}
.cid-uPFWf2Pkbs .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFWf2Pkbs .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPFWf2Pkbs .card-link {
    margin-top: 15px;
  }
}
.cid-uPFWf2Pkbs .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFWf3seLM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf3seLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf3seLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf3seLM .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uPFWf3seLM .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf3seLM .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uPFWf3seLM .mbr-section-title {
  color: #131313;
}
.cid-uPFWf3seLM .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uPFWf3seLM .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uPFWf3seLM .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uPFWf3seLM .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uPFWf3seLM .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uPFWf3seLM .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uPFWf3seLM .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uPFWf3seLM .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uPFWf3seLM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uPFWf3seLM .card-title {
  color: #131313;
}
.cid-uPFWf3seLM .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-uPFWf3seLM .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uPFWf3seLM .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uPFWf3seLM .card-link {
    margin-top: 15px;
  }
}
.cid-uPFWf3seLM .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uPFWf3seLM .card-title,
.cid-uPFWf3seLM .iconfont-wrapper {
  text-align: center;
}
.cid-uPFWf4c18Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPFWf4c18Q blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uPFWf4c18Q .mbr-section-title {
  text-align: center;
}
.cid-uPFWf4Fora {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPFWf4Fora .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf4Fora .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf4Fora .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFWf4Fora .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFWf4Fora .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFWf4Fora .panel-body,
.cid-uPFWf4Fora .card-header {
  padding: 1rem 0;
}
.cid-uPFWf4Fora .panel-title-edit {
  color: #000000;
}
.cid-uPFWf5np7u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPFWf5np7u .mbr-section-subtitle {
  text-align: center;
}
.cid-uPFWf5SfXF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPFWf5SfXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf5SfXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf5SfXF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPFWf5SfXF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uPFWf5SfXF .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #0c5ef6;
}
.cid-uPFWf5SfXF .panel-body,
.cid-uPFWf5SfXF .card-header {
  padding: 1rem 0;
}
.cid-uPFWf5SfXF .panel-title-edit {
  color: #000000;
}
.cid-uPFWf6Txc1 {
  background-color: #ffffff;
}
.cid-uPFWf6Txc1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf6Txc1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf6Txc1 .map-wrapper {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.cid-uPFWf6Txc1 .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFWf6Txc1 .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper {
  width: 100%;
  display: flex;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 30px;
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
@media (max-width: 1200px) {
  .cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uPFWf6Txc1 .map-wrapper .card-wrapper .card-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uPFWf6Txc1 .mbr-section-title {
  color: #404349;
}
.cid-uPFWf6Txc1 .mbr-section-subtitle {
  color: #000000;
}
.cid-uPFWf6Txc1 .mbr-text {
  color: #404349;
}
.cid-uPFWf6Txc1 .list {
  color: #404349;
}
.cid-uPFWf80Jbb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPFWf80Jbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPFWf80Jbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPFWf80Jbb .row {
  justify-content: center;
}
.cid-uPFWf80Jbb .main-content {
  background-color: #ffffff;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .cid-uPFWf80Jbb .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPFWf80Jbb .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uPFWf80Jbb .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uPFWf80Jbb .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPFWf80Jbb .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPFWf80Jbb .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPFWf80Jbb .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.cid-uPFWf80Jbb .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-uPFWf80Jbb .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uPFWf80Jbb .list .item-wrap:hover,
.cid-uPFWf80Jbb .list .item-wrap:focus {
  transform: translateX(14px);
}
.cid-uPFWf80Jbb .mbr-copy {
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-uPFWf80Jbb .mbr-section-title {
  color: #151e11;
}
.cid-uPFWf80Jbb .mbr-text {
  color: #151e11;
}
.cid-uPFWf80Jbb .mbr-section-title,
.cid-uPFWf80Jbb .mbr-section-btn {
  text-align: left;
}
