.btn {
  border-width: 2px;
}
body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #f7df67 !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 {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #f7df67;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f7df67;
  color: #f7df67;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f3ce15 !important;
  background-color: transparent !important;
  border-color: #f3ce15 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #5a4c05 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent !important;
  border-color: #ff0f0f !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f7df67 !important;
}
.text-secondary {
  color: #ff6666 !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: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f7df67 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #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: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #f7df67;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7df67;
  border-color: #f7df67;
  color: #726006;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f7df67;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'DM Sans', 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: #f7df67 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', 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: #f7df67;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7df67;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f7df67;
}
.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: #f7df67;
  border-bottom-color: #f7df67;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f7df67 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f7df67' %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-t3rKekLX1t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3rKekLX1t .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-t3rKekLX1t .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-t3rKekLX1t nav.navbar {
  position: fixed;
}
.cid-t3rKekLX1t .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-t3rKekLX1t .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-item {
    border: 0;
  }
}
.cid-t3rKekLX1t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-t3rKekLX1t .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-t3rKekLX1t .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-t3rKekLX1t .title-wrap:hover span {
  color: white;
}
.cid-t3rKekLX1t .title-wrap:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-t3rKekLX1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rKekLX1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rKekLX1t .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rKekLX1t .nav-link {
  position: relative;
}
.cid-t3rKekLX1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .container {
    flex-wrap: nowrap;
  }
}
.cid-t3rKekLX1t .dropdown-menu,
.cid-t3rKekLX1t .navbar.opened {
  background: #ffffff !important;
}
.cid-t3rKekLX1t .nav-item:focus,
.cid-t3rKekLX1t .nav-link:focus {
  outline: none;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rKekLX1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rKekLX1t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-t3rKekLX1t .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rKekLX1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rKekLX1t .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rKekLX1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar.collapsed {
  justify-content: center;
}
.cid-t3rKekLX1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rKekLX1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rKekLX1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rKekLX1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rKekLX1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rKekLX1t .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-t3rKekLX1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rKekLX1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rKekLX1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rKekLX1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rKekLX1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rKekLX1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rKekLX1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rKekLX1t .dropdown-item.active,
.cid-t3rKekLX1t .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rKekLX1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rKekLX1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rKekLX1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rKekLX1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rKekLX1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rKekLX1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3rKekLX1t .navbar {
    height: 70px;
  }
  .cid-t3rKekLX1t .navbar.opened {
    height: auto;
  }
  .cid-t3rKekLX1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rKekLX1t .navbar-caption-wrap,
.cid-t3rKekLX1t .title-wrap {
  color: #272727;
}
.cid-t3rKdK4uyp .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #f7df67;
}
.cid-t3rKdK4uyp .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rKdK4uyp .icon1 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon2 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon3 {
  color: #272727;
}
.cid-t3rKdK4uyp .icon4 {
  color: #272727;
}
.cid-t3rKdK4uyp .big {
  min-height: 100%;
}
.cid-t3rKdK4uyp .mbr-section-btn {
  max-width: 200px;
}
.cid-t3rKdK4uyp .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-t3rKdK4uyp .card1 {
  background-image: url("../../../assets/images/construction3-2-1380x773.webp");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-t3rKdK4uyp .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-t3rKdK4uyp .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rKdK4uyp .card-box {
  z-index: 2;
}
.cid-t3rKdK4uyp .card2 {
  background-image: url("../../../assets/images/1-1000x750.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #272727;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card2:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card2:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card3 {
  background-image: url("../../../assets/images/mbr-1.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7df67;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card3:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card3:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card4 {
  background-image: url("../../../assets/images/construction1-1-1380x868.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card4:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card4:hover:before {
  opacity: 0;
}
.cid-t3rKdK4uyp .card4 .mbr-iconfont {
  background: #f7df67;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-t3rKdK4uyp .card-title,
.cid-t3rKdK4uyp .card-box {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card2-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card3-title {
  color: #272727;
}
.cid-t3rKdK4uyp .card4-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card1-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card2-text {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card4-text {
  color: #ffffff;
}
.cid-t3rKdK4uyp .logo-white {
  width: 200px;
}
.cid-u108fwkL5I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u108fwkL5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-u108fwkL5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u108fwkL5I .container {
    padding: 0 16px;
  }
}
.cid-u108fwkL5I .row {
  padding: 90px 60px;
  border-radius: 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u108fwkL5I .row {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .cid-u108fwkL5I .row {
    padding: 20px 16px;
  }
}
.cid-u108fwkL5I .row .image-wrapper img {
  height: 440px;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u108fwkL5I .row .image-wrapper img {
    height: 300px;
  }
}
.cid-u0VxvrJWLP {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-u0VxvrJWLP .container {
    max-width: 1200px;
  }
}
.cid-u0VxvrJWLP .row {
  justify-content: space-between;
}
.cid-u0VxvrJWLP .text-wrapper {
  border-left: 4px solid #f7df67;
  padding-left: 2rem;
}
.cid-u0VxvrJWLP .mbr-main-subtitle {
  background: #f7df67;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-u0VxvrJWLP .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #f7df67;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u0VxvrJWLP .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-u0VxvrJWLP .image-wrap {
  overflow: hidden;
}
.cid-u0VxvrJWLP .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-u0VxvrJWLP .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-u0VxvrJWLP .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u0VxvrJWLP .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-u0VxvrJWLP .card-text,
.cid-u0VxvrJWLP .mbr-section-btn,
.cid-u0VxvrJWLP .social-row {
  color: #353535;
  text-align: left;
}
.cid-u0VxvrJWLP .card1-text {
  color: #353535;
}
.cid-u0VxvrJWLP .card-title,
.cid-u0VxvrJWLP .social-row {
  color: #000000;
}
.cid-u0VxvrJWLP .mbr-section-title {
  color: #000000;
}
.cid-u1tybgBeSF {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1tybgBeSF .mbr-media {
  position: relative;
}
.cid-u1tybgBeSF .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u1tybgBeSF .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: white;
  transition: all 0.3s;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u1tybgBeSF .icon-wrap:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 767px) {
  .cid-u1tybgBeSF .icon-wrap {
    width: 80px;
    height: 80px;
  }
}
.cid-u1tybgBeSF .mbr-media span {
  font-size: 3rem;
  color: #f7df67;
  border-radius: 50%;
  padding-left: 0.6rem;
}
@media (max-width: 767px) {
  .cid-u1tybgBeSF .mbr-media span {
    font-size: 2rem;
  }
}
.cid-u1tybgBeSF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u1tybgBeSF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u1tybgBeSF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u1tybgBeSF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u1tybgBeSF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0Vz7FIwX4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-u0Vz7FIwX4 .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-u0Vz7FIwX4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u0Vz7FIwX4 .first-card {
  display: block;
}
.cid-u0Vz7FIwX4 .first-card .card-wrapper {
  height: 100%;
}
.cid-u0Vz7FIwX4 .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-u0Vz7FIwX4 .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0Vz7FIwX4 .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-u0Vz7FIwX4 .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-u0Vz7FIwX4 .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-u0Vz7FIwX4 .first-row,
.cid-u0Vz7FIwX4 .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-u0Vz7FIwX4 .first-row .card .card-wrapper,
.cid-u0Vz7FIwX4 .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-u0Vz7FIwX4 .first-row .card .card-wrapper .card-img,
.cid-u0Vz7FIwX4 .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-u0Vz7FIwX4 .first-row .card .card-wrapper .card-img img,
.cid-u0Vz7FIwX4 .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-u0Vz7FIwX4 .first-row,
  .cid-u0Vz7FIwX4 .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u0Vz7FIwX4 .first-row .card .card-wrapper .card-img,
  .cid-u0Vz7FIwX4 .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u0Vz7FIwX4 .first-row .card .card-wrapper .card-img img,
  .cid-u0Vz7FIwX4 .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-u0Vz7FIwX4 .first-row .caption,
.cid-u0Vz7FIwX4 .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-u0Vz7FIwX4 .first-row .caption .price,
.cid-u0Vz7FIwX4 .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-u0Vz7FIwX4 .first-row {
  padding-bottom: 1rem;
}
.cid-u0Vz7FIwX4 .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-u0Vz7FIwX4 .first-card,
  .cid-u0Vz7FIwX4 .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0Vz7FIwX4 .first-card {
    padding-bottom: 2rem;
  }
  .cid-u0Vz7FIwX4 .only-first-row {
    height: 100%;
  }
}
.cid-u0Vz7FIwX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Vz7FIwX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Vwzf6wO7 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #e0ebff;
}
@media (min-width: 1200px) {
  .cid-u0Vwzf6wO7 .content-wrapper {
    padding-right: 60px;
  }
}
.cid-u0Vwzf6wO7 img {
  width: 100%;
  border-bottom-left-radius: 50px;
  border-radius: 0 0 0 0 !important;
}
@media (max-width: 991px) {
  .cid-u0Vwzf6wO7 .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-u0Vwzf6wO7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Vwzf6wO7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Vwzf6wO7 .mbr-text {
  line-height: 1.7;
}
.cid-t3rROvp08p {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #e0ebff;
}
@media (min-width: 1400px) {
  .cid-t3rROvp08p .container {
    max-width: 1000px;
  }
}
.cid-t3rROvp08p .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #f7df67;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-t3rROvp08p .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-t3rROvp08p .row {
  justify-content: center;
}
.cid-t3rROvp08p .card-text {
  color: #353535;
}
.cid-t3rROvp08p .card-title,
.cid-t3rROvp08p .iconfont-wrapper {
  color: #272727;
}
.cid-u0VHLRUUEl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u0VHLRUUEl .social {
  display: inline-flex;
  align-items: center;
}
.cid-u0VHLRUUEl .social .socicon {
  padding-right: 0.6rem;
  color: #f7df67;
  font-size: 1.2rem;
}
.cid-u0VHLRUUEl .soc-wrapper {
  width: 100%;
}
.cid-u0VHLRUUEl .mbr-section-head {
  background-image: url("../../../assets/images/construction1-1-1380x868.webp");
  padding: 13rem 20rem;
  background-size: cover;
  position: relative;
  background-position: center;
}
@media (max-width: 992px) {
  .cid-u0VHLRUUEl .mbr-section-head {
    padding: 6rem 10rem;
  }
}
@media (max-width: 767px) {
  .cid-u0VHLRUUEl .mbr-section-head {
    padding: 4rem 2rem;
  }
}
.cid-u0VHLRUUEl .mbr-section-subtitle,
.cid-u0VHLRUUEl .main-btn {
  color: #ffffff;
}
.cid-u0VHLRUUEl .mbr-section-title {
  color: #ffffff;
}
.cid-u0VHLRUUEl .soc-link,
.cid-u0VHLRUUEl .soc-wrapper {
  color: #ffffff;
}
.cid-u10MbCx1eF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u10MbCx1eF .item-img {
  position: relative;
}
.cid-u10MbCx1eF .item-img img {
  transition: all 0.2s;
}
.cid-u10MbCx1eF .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-u10MbCx1eF .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-u10MbCx1eF .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-u10MbCx1eF .item:hover img {
  transform: scale(1.05);
}
.cid-u10MbCx1eF .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-u10MbCx1eF .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-u10MbCx1eF .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u10MbCx1eF .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-u10MbCx1eF .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-u10MbCx1eF .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-u10MbCx1eF .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-u10MbCx1eF .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-u10MbCx1eF .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-u10MbCx1eF .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-u10MbCx1eF .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-u10MbCx1eF .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-u10MbCx1eF .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u10MbCx1eF .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-u10MbCx1eF img,
.cid-u10MbCx1eF .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u10MbCx1eF .item:focus,
.cid-u10MbCx1eF span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-u10MbCx1eF .item {
    margin-bottom: 1rem;
  }
}
.cid-u10MbCx1eF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u10MbCx1eF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u10MbCx1eF .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-u10MbCx1eF .mbr-section-subtitle,
.cid-u10MbCx1eF .subtitle-wrap,
.cid-u10MbCx1eF .mbr-section-btn {
  text-align: left;
}
.cid-u10MbCx1eF .mbr-text,
.cid-u10MbCx1eF .item .mbr-section-btn {
  color: #ffffff;
}
.cid-u116Fzl7WH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u116Fzl7WH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u116Fzl7WH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u116Fzl7WH .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u116Fzl7WH .container {
    padding: 0 16px;
  }
}
.cid-u116Fzl7WH .content-wrapper {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-u116Fzl7WH .content-wrapper {
    padding: 20px 0;
  }
}
.cid-u116Fzl7WH .content-wrapper .content-wrap {
  display: inline-flex;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-u116Fzl7WH .content-wrapper .content-wrap {
    display: block;
    width: 100%;
  }
}
.cid-u116Fzl7WH .content-wrapper .content-wrap:hover .mbr-iconfont,
.cid-u116Fzl7WH .content-wrapper .content-wrap:focus .mbr-iconfont {
  transform: translateX(1rem);
}
.cid-u116Fzl7WH .content-wrapper .content-wrap:hover .mbr-section-title,
.cid-u116Fzl7WH .content-wrapper .content-wrap:focus .mbr-section-title {
  text-decoration-color: #000000;
}
.cid-u116Fzl7WH .content-wrapper .content-wrap .mbr-iconfont {
  font-size: 100px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  margin-right: 48px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-u116Fzl7WH .content-wrapper .content-wrap .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 60px;
  }
}
.cid-u116Fzl7WH .content-wrapper .content-wrap .mbr-section-title {
  text-decoration: underline;
  text-decoration-color: transparent;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u116Fzl7WH .mbr-section-title {
  color: #000000;
}
.cid-u0XSx7t2Tz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0XSx7t2Tz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XSx7t2Tz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0XSx7t2Tz .container,
.cid-u0XSx7t2Tz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u0XSx7t2Tz .container,
  .cid-u0XSx7t2Tz .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0XSx7t2Tz .row {
  justify-content: center;
}
.cid-u0XSx7t2Tz .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u0XSx7t2Tz .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u0XSx7t2Tz .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u0XSx7t2Tz .item {
  margin-bottom: 40px;
}
.cid-u0XSx7t2Tz .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u0XSx7t2Tz .mbr-section-title {
  color: #3d4045;
}
.cid-u0XQgmceqz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u0XQgmceqz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0XQgmceqz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0XQgmceqz .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u0XQgmceqz .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0XQgmceqz .container {
    padding: 0 16px;
  }
}
.cid-u0XQgmceqz .row {
  justify-content: center;
}
.cid-u0XQgmceqz .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0XQgmceqz .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0XQgmceqz .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u0XQgmceqz .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u0XQgmceqz .list {
    margin-bottom: 40px;
  }
}
.cid-u0XQgmceqz .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0XQgmceqz .list .item-wrap:hover,
.cid-u0XQgmceqz .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0XQgmceqz .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0XQgmceqz .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0XQgmceqz .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u0XQgmceqz .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u0XQgmceqz .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0XQgmceqz .contacts-wrapper .list .item-wrap:hover,
.cid-u0XQgmceqz .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0XQgmceqz .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u0XQgmceqz .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u0XQgmceqz .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u0XQgmceqz .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u0XQgmceqz .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u0XQgmceqz .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u0XQgmceqz .list-title {
  color: #becdc2;
}
.cid-u0XQgmceqz .list,
.cid-u0XQgmceqz .item-wrap {
  color: #ffffff;
}
.cid-u0ZJQMw0nT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0ZJQMw0nT .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u0ZJQMw0nT .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u0ZJQMw0nT .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u0ZJQMw0nT .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u0ZJQMw0nT .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u0ZJQMw0nT nav.navbar {
  position: fixed;
}
.cid-u0ZJQMw0nT .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u0ZJQMw0nT .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u0ZJQMw0nT .nav-item {
    border: 0;
  }
}
.cid-u0ZJQMw0nT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u0ZJQMw0nT .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u0ZJQMw0nT .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u0ZJQMw0nT .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u0ZJQMw0nT .title-wrap:hover span {
  color: white;
}
.cid-u0ZJQMw0nT .title-wrap:hover:before {
  height: 100%;
}
.cid-u0ZJQMw0nT .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-u0ZJQMw0nT .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u0ZJQMw0nT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0ZJQMw0nT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0ZJQMw0nT .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u0ZJQMw0nT .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u0ZJQMw0nT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0ZJQMw0nT .nav-link {
  position: relative;
}
.cid-u0ZJQMw0nT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0ZJQMw0nT .container {
    flex-wrap: nowrap;
  }
}
.cid-u0ZJQMw0nT .dropdown-menu,
.cid-u0ZJQMw0nT .navbar.opened {
  background: #ffffff !important;
}
.cid-u0ZJQMw0nT .nav-item:focus,
.cid-u0ZJQMw0nT .nav-link:focus {
  outline: none;
}
.cid-u0ZJQMw0nT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0ZJQMw0nT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0ZJQMw0nT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0ZJQMw0nT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0ZJQMw0nT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0ZJQMw0nT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0ZJQMw0nT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u0ZJQMw0nT .navbar.opened {
  transition: all 0.3s;
}
.cid-u0ZJQMw0nT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0ZJQMw0nT .navbar .navbar-logo img {
  width: auto;
}
.cid-u0ZJQMw0nT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0ZJQMw0nT .navbar.collapsed {
  justify-content: center;
}
.cid-u0ZJQMw0nT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0ZJQMw0nT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0ZJQMw0nT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0ZJQMw0nT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0ZJQMw0nT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0ZJQMw0nT .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-u0ZJQMw0nT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0ZJQMw0nT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0ZJQMw0nT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0ZJQMw0nT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0ZJQMw0nT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0ZJQMw0nT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0ZJQMw0nT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0ZJQMw0nT .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-u0ZJQMw0nT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0ZJQMw0nT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0ZJQMw0nT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0ZJQMw0nT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0ZJQMw0nT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0ZJQMw0nT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0ZJQMw0nT .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0ZJQMw0nT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0ZJQMw0nT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0ZJQMw0nT .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-u0ZJQMw0nT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0ZJQMw0nT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0ZJQMw0nT .dropdown-item.active,
.cid-u0ZJQMw0nT .dropdown-item:active {
  background-color: transparent;
}
.cid-u0ZJQMw0nT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0ZJQMw0nT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0ZJQMw0nT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0ZJQMw0nT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0ZJQMw0nT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0ZJQMw0nT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0ZJQMw0nT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0ZJQMw0nT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0ZJQMw0nT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0ZJQMw0nT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0ZJQMw0nT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0ZJQMw0nT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZJQMw0nT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZJQMw0nT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0ZJQMw0nT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZJQMw0nT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0ZJQMw0nT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0ZJQMw0nT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZJQMw0nT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0ZJQMw0nT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0ZJQMw0nT .navbar {
    height: 70px;
  }
  .cid-u0ZJQMw0nT .navbar.opened {
    height: auto;
  }
  .cid-u0ZJQMw0nT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0ZJQMw0nT .navbar-caption-wrap,
.cid-u0ZJQMw0nT .title-wrap {
  color: #272727;
}
.cid-u0ZKUe8yF5 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construction1-2-1380x868.webp");
}
.cid-u0ZKUe8yF5 .container-fluid {
  padding: 0 3rem;
}
.cid-u0ZKUe8yF5 .media-container-column {
  padding: 0 2rem;
}
.cid-u0ZKUe8yF5 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u0ZKUe8yF5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u0ZKUe8yF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZKUe8yF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZKHAw5ls {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-u0ZKHAw5ls .container {
    max-width: 1000px;
  }
}
.cid-u0ZKHAw5ls .item-img,
.cid-u0ZKHAw5ls img {
  height: 100%;
  object-fit: cover;
}
.cid-u0ZKHAw5ls .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #f7df67;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.cid-u0ZKHAw5ls .card-wrapper {
  margin-bottom: 2rem;
}
.cid-u0ZKHAw5ls .row {
  justify-content: center;
}
.cid-u0ZKHAw5ls .card-text {
  color: #353535;
}
.cid-u0ZKHAw5ls .card-title,
.cid-u0ZKHAw5ls .iconfont-wrapper {
  color: #272727;
}
.cid-u110Pu2ooh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f1f1f1;
}
.cid-u110Pu2ooh .title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-u110Pu2ooh .mbr-section-subtitle {
  color: #9e9e9e;
  text-align: center;
}
.cid-u110Pu2ooh p {
  margin: 0;
  padding: 0;
}
.cid-u110Pu2ooh .card {
  margin-bottom: 2rem;
}
.cid-u110Pu2ooh .card-block {
  letter-spacing: 0.03em;
  position: relative;
  background: #ffffff;
  color: #444444;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.cid-u110Pu2ooh .card-block:before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid #ffffff;
  border-right: 15px solid transparent;
}
.cid-u110Pu2ooh .mbr-author-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  margin-left: 0rem;
  margin-right: 1.5rem;
}
.cid-u110Pu2ooh .mbr-author-img img {
  width: 100%;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-u110Pu2ooh .name-wrap {
  display: inline-block;
}
.cid-u110Pu2ooh .card-footer {
  margin-top: 1rem;
  display: flex;
  border-top: none;
  background: none;
  padding: 0.75rem 1.25rem 1.25rem 1.25rem;
}
.cid-u110Pu2ooh .mbr-author-desc {
  color: #9e9e9e;
}
.cid-u110Pu2ooh .card-block P {
  color: #9e9e9e;
}
.cid-u110Pu2ooh .mbr-author-name {
  color: #506ab9;
}
.cid-u110Pu2ooh .mbr-section-title,
.cid-u110Pu2ooh .title DIV {
  color: #232323;
  text-align: center;
}
.cid-u110Pu2ooh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u110Pu2ooh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZJQQirh5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0ZJQQirh5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZJQQirh5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZJQQirh5 .container,
.cid-u0ZJQQirh5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u0ZJQQirh5 .container,
  .cid-u0ZJQQirh5 .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0ZJQQirh5 .row {
  justify-content: center;
}
.cid-u0ZJQQirh5 .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u0ZJQQirh5 .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u0ZJQQirh5 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u0ZJQQirh5 .item {
  margin-bottom: 40px;
}
.cid-u0ZJQQirh5 .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u0ZJQQirh5 .mbr-section-title {
  color: #3d4045;
}
.cid-u0ZJQQEMcq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u0ZJQQEMcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZJQQEMcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZJQQEMcq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u0ZJQQEMcq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0ZJQQEMcq .container {
    padding: 0 16px;
  }
}
.cid-u0ZJQQEMcq .row {
  justify-content: center;
}
.cid-u0ZJQQEMcq .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZJQQEMcq .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZJQQEMcq .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u0ZJQQEMcq .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u0ZJQQEMcq .list {
    margin-bottom: 40px;
  }
}
.cid-u0ZJQQEMcq .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZJQQEMcq .list .item-wrap:hover,
.cid-u0ZJQQEMcq .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZJQQEMcq .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZJQQEMcq .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZJQQEMcq .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u0ZJQQEMcq .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u0ZJQQEMcq .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZJQQEMcq .contacts-wrapper .list .item-wrap:hover,
.cid-u0ZJQQEMcq .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZJQQEMcq .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u0ZJQQEMcq .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u0ZJQQEMcq .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u0ZJQQEMcq .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u0ZJQQEMcq .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u0ZJQQEMcq .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u0ZJQQEMcq .list-title {
  color: #becdc2;
}
.cid-u0ZJQQEMcq .list,
.cid-u0ZJQQEMcq .item-wrap {
  color: #ffffff;
}
.cid-u0ZZ5Ca0Et {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0ZZ5Ca0Et .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u0ZZ5Ca0Et .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u0ZZ5Ca0Et .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u0ZZ5Ca0Et .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u0ZZ5Ca0Et .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u0ZZ5Ca0Et nav.navbar {
  position: fixed;
}
.cid-u0ZZ5Ca0Et .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u0ZZ5Ca0Et .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u0ZZ5Ca0Et .nav-item {
    border: 0;
  }
}
.cid-u0ZZ5Ca0Et .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u0ZZ5Ca0Et .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u0ZZ5Ca0Et .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u0ZZ5Ca0Et .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u0ZZ5Ca0Et .title-wrap:hover span {
  color: white;
}
.cid-u0ZZ5Ca0Et .title-wrap:hover:before {
  height: 100%;
}
.cid-u0ZZ5Ca0Et .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-u0ZZ5Ca0Et .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u0ZZ5Ca0Et .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0ZZ5Ca0Et .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0ZZ5Ca0Et .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u0ZZ5Ca0Et .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u0ZZ5Ca0Et .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0ZZ5Ca0Et .nav-link {
  position: relative;
}
.cid-u0ZZ5Ca0Et .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0ZZ5Ca0Et .container {
    flex-wrap: nowrap;
  }
}
.cid-u0ZZ5Ca0Et .dropdown-menu,
.cid-u0ZZ5Ca0Et .navbar.opened {
  background: #ffffff !important;
}
.cid-u0ZZ5Ca0Et .nav-item:focus,
.cid-u0ZZ5Ca0Et .nav-link:focus {
  outline: none;
}
.cid-u0ZZ5Ca0Et .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0ZZ5Ca0Et .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0ZZ5Ca0Et .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0ZZ5Ca0Et .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0ZZ5Ca0Et .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0ZZ5Ca0Et .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0ZZ5Ca0Et .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u0ZZ5Ca0Et .navbar.opened {
  transition: all 0.3s;
}
.cid-u0ZZ5Ca0Et .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0ZZ5Ca0Et .navbar .navbar-logo img {
  width: auto;
}
.cid-u0ZZ5Ca0Et .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed {
  justify-content: center;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0ZZ5Ca0Et .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0ZZ5Ca0Et .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0ZZ5Ca0Et .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-u0ZZ5Ca0Et .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0ZZ5Ca0Et .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0ZZ5Ca0Et .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0ZZ5Ca0Et .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0ZZ5Ca0Et .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0ZZ5Ca0Et .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0ZZ5Ca0Et .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-u0ZZ5Ca0Et .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0ZZ5Ca0Et .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0ZZ5Ca0Et .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0ZZ5Ca0Et .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0ZZ5Ca0Et .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0ZZ5Ca0Et .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0ZZ5Ca0Et .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0ZZ5Ca0Et .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0ZZ5Ca0Et .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0ZZ5Ca0Et .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-u0ZZ5Ca0Et .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0ZZ5Ca0Et .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0ZZ5Ca0Et .dropdown-item.active,
.cid-u0ZZ5Ca0Et .dropdown-item:active {
  background-color: transparent;
}
.cid-u0ZZ5Ca0Et .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0ZZ5Ca0Et .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0ZZ5Ca0Et .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0ZZ5Ca0Et .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0ZZ5Ca0Et .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0ZZ5Ca0Et .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0ZZ5Ca0Et ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0ZZ5Ca0Et .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZZ5Ca0Et button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0ZZ5Ca0Et nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZZ5Ca0Et nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0ZZ5Ca0Et nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0ZZ5Ca0Et nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZZ5Ca0Et .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0ZZ5Ca0Et a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0ZZ5Ca0Et .navbar {
    height: 70px;
  }
  .cid-u0ZZ5Ca0Et .navbar.opened {
    height: auto;
  }
  .cid-u0ZZ5Ca0Et .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0ZZ5Ca0Et .navbar-caption-wrap,
.cid-u0ZZ5Ca0Et .title-wrap {
  color: #272727;
}
.cid-u0ZZ5Cp4c6 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construction1-2-1380x868.webp");
}
.cid-u0ZZ5Cp4c6 .container-fluid {
  padding: 0 3rem;
}
.cid-u0ZZ5Cp4c6 .media-container-column {
  padding: 0 2rem;
}
.cid-u0ZZ5Cp4c6 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u0ZZ5Cp4c6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u0ZZ5Cp4c6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZZ5Cp4c6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10lsqEWvG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-u10lsqEWvG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10lsqEWvG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10lsqEWvG .container {
    padding: 0 24px;
  }
}
.cid-u10lsqEWvG .row {
  justify-content: center;
}
.cid-u10lsqEWvG .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10lsqEWvG .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10lsqEWvG .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10lsqEWvG .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10lsqEWvG .mbr-section-title {
  color: #141414;
}
.cid-u10lsqEWvG .mbr-text {
  color: #141414;
}
.cid-u100m3E4Og {
  background-color: #fff0b0;
}
.cid-u100m3E4Og .item-wrapper {
  width: 100%;
}
.cid-u100m3E4Og .row {
  align-items: center;
  justify-content: center;
}
.cid-u100m3E4Og .b {
  margin-bottom: 30px;
}
.cid-u100m3E4Og img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-u100m3E4Og .b,
  .cid-u100m3E4Og .t {
    margin-bottom: 20px;
  }
}
.cid-u10jp1gtha {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e0ebff;
}
.cid-u10jp1gtha .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10jp1gtha .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10jp1gtha .container {
    padding: 0 24px;
  }
}
.cid-u10jp1gtha .row {
  justify-content: center;
}
.cid-u10jp1gtha .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10jp1gtha .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10jp1gtha .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10jp1gtha .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10jp1gtha .mbr-section-title {
  color: #141414;
}
.cid-u10jp1gtha .mbr-text {
  color: #141414;
}
.cid-u10is9z4Sk {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #e0ebff;
}
.cid-u10is9z4Sk .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u10is9z4Sk .wrapper .left-col {
    flex: 1 0 50%;
    padding-right: 12px;
  }
  .cid-u10is9z4Sk .wrapper .right-col {
    flex: 1 0 50%;
    padding-left: 12px;
  }
}
.cid-u10is9z4Sk .card {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}
.cid-u10is9z4Sk .card-img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 20px;
}
.cid-u10is9z4Sk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10is9z4Sk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10yHS7ZBB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-u10yHS7ZBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10yHS7ZBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10yHS7ZBB .container {
    padding: 0 24px;
  }
}
.cid-u10yHS7ZBB .row {
  justify-content: center;
}
.cid-u10yHS7ZBB .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10yHS7ZBB .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10yHS7ZBB .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10yHS7ZBB .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10yHS7ZBB .mbr-section-title {
  color: #141414;
}
.cid-u10yHS7ZBB .mbr-text {
  color: #141414;
}
.cid-u10xuvssDj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u10xuvssDj .item-wrapper {
  width: 100%;
}
.cid-u10xuvssDj .left-side {
  text-align: left;
}
.cid-u10xuvssDj .row {
  align-items: center;
  justify-content: center;
}
.cid-u10xuvssDj .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
}
.cid-u10xuvssDj .card-box:focus-within {
  opacity: 1;
}
.cid-u10xuvssDj .row-center {
  height: 100%;
}
.cid-u10xuvssDj .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-u10xuvssDj .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u10xuvssDj .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-u10xuvssDj .card-wrapper:hover .card-box,
.cid-u10xuvssDj .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u10xuvssDj .card-wrapper:hover .card-img,
.cid-u10xuvssDj .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-u10xuvssDj .card-wrapper:hover:before,
.cid-u10xuvssDj .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-u10xuvssDj .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-u10xuvssDj .g {
  grid-row-gap: 24px;
}
.cid-u10xuvssDj .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-u10xuvssDj .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-u10xuvssDj .carousel-control {
    display: none;
  }
}
.cid-u10xuvssDj .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-u10xuvssDj .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-u10xuvssDj .card1 {
  background-image: url("../../../assets/images/reno-12-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10xuvssDj .card2 {
  background-image: url("../../../assets/images/reno-13-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10xuvssDj .card3 {
  background-image: url("../../../assets/images/reno-14-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10xuvssDj .card4 {
  background-image: url("../../../assets/images/reno-4-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10xuvssDj .card5 {
  background-image: url("../../../assets/images/reno-15-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10xuvssDj .card6 {
  background-image: url("../../../assets/images/reno-16-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u10y8l9wEh .item-wrapper {
  width: 100%;
}
.cid-u10y8l9wEh .left-side {
  text-align: left;
}
.cid-u10y8l9wEh .row {
  align-items: center;
  justify-content: center;
}
.cid-u10y8l9wEh .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
}
.cid-u10y8l9wEh .card-box:focus-within {
  opacity: 1;
}
.cid-u10y8l9wEh .row-center {
  height: 100%;
}
.cid-u10y8l9wEh .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-u10y8l9wEh .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u10y8l9wEh .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-u10y8l9wEh .card-wrapper:hover .card-box,
.cid-u10y8l9wEh .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u10y8l9wEh .card-wrapper:hover .card-img,
.cid-u10y8l9wEh .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-u10y8l9wEh .card-wrapper:hover:before,
.cid-u10y8l9wEh .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-u10y8l9wEh .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-u10y8l9wEh .g {
  grid-row-gap: 24px;
}
.cid-u10y8l9wEh .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-u10y8l9wEh .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-u10y8l9wEh .carousel-control {
    display: none;
  }
}
.cid-u10y8l9wEh .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-u10y8l9wEh .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-u10y8l9wEh .card1 {
  background-image: url("../../../assets/images/reno-11-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh .card2 {
  background-image: url("../../../assets/images/reno-17-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh .card3 {
  background-image: url("../../../assets/images/reno-18-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh .card4 {
  background-image: url("../../../assets/images/reno-19-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh .card5 {
  background-image: url("../../../assets/images/reno-20-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10y8l9wEh .card6 {
  background-image: url("../../../assets/images/reno-21-457x316.webp");
  background-size: cover;
  background-position: center;
}
.cid-u0ZZ5CLUPQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0ZZ5CLUPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZZ5CLUPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZZ5CLUPQ .container,
.cid-u0ZZ5CLUPQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CLUPQ .container,
  .cid-u0ZZ5CLUPQ .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0ZZ5CLUPQ .row {
  justify-content: center;
}
.cid-u0ZZ5CLUPQ .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u0ZZ5CLUPQ .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CLUPQ .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u0ZZ5CLUPQ .item {
  margin-bottom: 40px;
}
.cid-u0ZZ5CLUPQ .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u0ZZ5CLUPQ .mbr-section-title {
  color: #3d4045;
}
.cid-u0ZZ5CX3KN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u0ZZ5CX3KN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZZ5CX3KN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZZ5CX3KN .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CX3KN .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0ZZ5CX3KN .container {
    padding: 0 16px;
  }
}
.cid-u0ZZ5CX3KN .row {
  justify-content: center;
}
.cid-u0ZZ5CX3KN .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CX3KN .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZZ5CX3KN .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u0ZZ5CX3KN .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CX3KN .list {
    margin-bottom: 40px;
  }
}
.cid-u0ZZ5CX3KN .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZZ5CX3KN .list .item-wrap:hover,
.cid-u0ZZ5CX3KN .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZZ5CX3KN .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZZ5CX3KN .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZZ5CX3KN .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u0ZZ5CX3KN .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u0ZZ5CX3KN .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZZ5CX3KN .contacts-wrapper .list .item-wrap:hover,
.cid-u0ZZ5CX3KN .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZZ5CX3KN .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u0ZZ5CX3KN .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u0ZZ5CX3KN .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u0ZZ5CX3KN .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u0ZZ5CX3KN .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u0ZZ5CX3KN .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u0ZZ5CX3KN .list-title {
  color: #becdc2;
}
.cid-u0ZZ5CX3KN .list,
.cid-u0ZZ5CX3KN .item-wrap {
  color: #ffffff;
}
.cid-u10zVqCVXg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u10zVqCVXg .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u10zVqCVXg .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u10zVqCVXg .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u10zVqCVXg .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u10zVqCVXg .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u10zVqCVXg nav.navbar {
  position: fixed;
}
.cid-u10zVqCVXg .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u10zVqCVXg .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u10zVqCVXg .nav-item {
    border: 0;
  }
}
.cid-u10zVqCVXg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u10zVqCVXg .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u10zVqCVXg .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u10zVqCVXg .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u10zVqCVXg .title-wrap:hover span {
  color: white;
}
.cid-u10zVqCVXg .title-wrap:hover:before {
  height: 100%;
}
.cid-u10zVqCVXg .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-u10zVqCVXg .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u10zVqCVXg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u10zVqCVXg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u10zVqCVXg .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u10zVqCVXg .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u10zVqCVXg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u10zVqCVXg .nav-link {
  position: relative;
}
.cid-u10zVqCVXg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u10zVqCVXg .container {
    flex-wrap: nowrap;
  }
}
.cid-u10zVqCVXg .dropdown-menu,
.cid-u10zVqCVXg .navbar.opened {
  background: #ffffff !important;
}
.cid-u10zVqCVXg .nav-item:focus,
.cid-u10zVqCVXg .nav-link:focus {
  outline: none;
}
.cid-u10zVqCVXg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u10zVqCVXg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u10zVqCVXg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u10zVqCVXg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u10zVqCVXg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u10zVqCVXg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u10zVqCVXg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u10zVqCVXg .navbar.opened {
  transition: all 0.3s;
}
.cid-u10zVqCVXg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u10zVqCVXg .navbar .navbar-logo img {
  width: auto;
}
.cid-u10zVqCVXg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u10zVqCVXg .navbar.collapsed {
  justify-content: center;
}
.cid-u10zVqCVXg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u10zVqCVXg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u10zVqCVXg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u10zVqCVXg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u10zVqCVXg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u10zVqCVXg .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-u10zVqCVXg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u10zVqCVXg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u10zVqCVXg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u10zVqCVXg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u10zVqCVXg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u10zVqCVXg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u10zVqCVXg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u10zVqCVXg .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-u10zVqCVXg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u10zVqCVXg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u10zVqCVXg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u10zVqCVXg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u10zVqCVXg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u10zVqCVXg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u10zVqCVXg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u10zVqCVXg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u10zVqCVXg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u10zVqCVXg .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-u10zVqCVXg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u10zVqCVXg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u10zVqCVXg .dropdown-item.active,
.cid-u10zVqCVXg .dropdown-item:active {
  background-color: transparent;
}
.cid-u10zVqCVXg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u10zVqCVXg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u10zVqCVXg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u10zVqCVXg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u10zVqCVXg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u10zVqCVXg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u10zVqCVXg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u10zVqCVXg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u10zVqCVXg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u10zVqCVXg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u10zVqCVXg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u10zVqCVXg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10zVqCVXg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10zVqCVXg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u10zVqCVXg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10zVqCVXg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u10zVqCVXg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u10zVqCVXg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10zVqCVXg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u10zVqCVXg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u10zVqCVXg .navbar {
    height: 70px;
  }
  .cid-u10zVqCVXg .navbar.opened {
    height: auto;
  }
  .cid-u10zVqCVXg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u10zVqCVXg .navbar-caption-wrap,
.cid-u10zVqCVXg .title-wrap {
  color: #272727;
}
.cid-u10zVr42vg {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construction1-2-1380x868.webp");
}
.cid-u10zVr42vg .container-fluid {
  padding: 0 3rem;
}
.cid-u10zVr42vg .media-container-column {
  padding: 0 2rem;
}
.cid-u10zVr42vg .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u10zVr42vg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u10zVr42vg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVr42vg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10zVrq2CH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #fff0b0;
}
.cid-u10zVrq2CH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVrq2CH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10zVrq2CH .container {
    padding: 0 24px;
  }
}
.cid-u10zVrq2CH .row {
  justify-content: center;
}
.cid-u10zVrq2CH .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10zVrq2CH .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10zVrq2CH .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10zVrq2CH .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10zVrq2CH .mbr-section-title {
  color: #141414;
}
.cid-u10zVrq2CH .mbr-text {
  color: #141414;
}
.cid-u10zVrLoec {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #fff0b0;
}
.cid-u10zVrLoec .item-wrapper {
  width: 100%;
}
.cid-u10zVrLoec .row {
  align-items: center;
  justify-content: center;
}
.cid-u10zVrLoec .b {
  margin-bottom: 30px;
}
.cid-u10zVrLoec img {
  border-radius: 25px;
}
@media (max-width: 576px) {
  .cid-u10zVrLoec .b,
  .cid-u10zVrLoec .t {
    margin-bottom: 20px;
  }
}
.cid-u10zVsaGam {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e0ebff;
}
.cid-u10zVsaGam .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVsaGam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10zVsaGam .container {
    padding: 0 24px;
  }
}
.cid-u10zVsaGam .row {
  justify-content: center;
}
.cid-u10zVsaGam .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10zVsaGam .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10zVsaGam .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10zVsaGam .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10zVsaGam .mbr-section-title {
  color: #141414;
}
.cid-u10zVsaGam .mbr-text {
  color: #141414;
}
.cid-u10zVswUjZ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #e0ebff;
}
.cid-u10zVswUjZ .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u10zVswUjZ .wrapper .left-col {
    flex: 1 0 50%;
    padding-right: 12px;
  }
  .cid-u10zVswUjZ .wrapper .right-col {
    flex: 1 0 50%;
    padding-left: 12px;
  }
}
.cid-u10zVswUjZ .card {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}
.cid-u10zVswUjZ .card-img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 20px;
}
.cid-u10zVswUjZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVswUjZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10zVsVWA6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-u10zVsVWA6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVsVWA6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u10zVsVWA6 .container {
    padding: 0 24px;
  }
}
.cid-u10zVsVWA6 .row {
  justify-content: center;
}
.cid-u10zVsVWA6 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u10zVsVWA6 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u10zVsVWA6 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u10zVsVWA6 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u10zVsVWA6 .mbr-section-title {
  color: #141414;
}
.cid-u10zVsVWA6 .mbr-text {
  color: #141414;
}
.cid-u10zVti5uM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u10zVti5uM .item-wrapper {
  width: 100%;
}
.cid-u10zVti5uM .left-side {
  text-align: left;
}
.cid-u10zVti5uM .row {
  align-items: center;
  justify-content: center;
}
.cid-u10zVti5uM .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
}
.cid-u10zVti5uM .card-box:focus-within {
  opacity: 1;
}
.cid-u10zVti5uM .row-center {
  height: 100%;
}
.cid-u10zVti5uM .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-u10zVti5uM .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u10zVti5uM .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-u10zVti5uM .card-wrapper:hover .card-box,
.cid-u10zVti5uM .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u10zVti5uM .card-wrapper:hover .card-img,
.cid-u10zVti5uM .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-u10zVti5uM .card-wrapper:hover:before,
.cid-u10zVti5uM .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-u10zVti5uM .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-u10zVti5uM .g {
  grid-row-gap: 24px;
}
.cid-u10zVti5uM .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-u10zVti5uM .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-u10zVti5uM .carousel-control {
    display: none;
  }
}
.cid-u10zVti5uM .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-u10zVti5uM .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-u10zVti5uM .card1 {
  background-image: url("../../../assets/images/p10-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVti5uM .card2 {
  background-image: url("../../../assets/images/p11-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVti5uM .card3 {
  background-image: url("../../../assets/images/p12-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVti5uM .card4 {
  background-image: url("../../../assets/images/p13-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVti5uM .card5 {
  background-image: url("../../../assets/images/p14-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVti5uM .card6 {
  background-image: url("../../../assets/images/p16-1000x750.webp");
  background-size: cover;
  background-position: center;
}
.cid-u10zVuaLJw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u10zVuaLJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVuaLJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10zVuaLJw .container,
.cid-u10zVuaLJw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u10zVuaLJw .container,
  .cid-u10zVuaLJw .container-fluid {
    padding: 0 20px;
  }
}
.cid-u10zVuaLJw .row {
  justify-content: center;
}
.cid-u10zVuaLJw .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u10zVuaLJw .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u10zVuaLJw .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u10zVuaLJw .item {
  margin-bottom: 40px;
}
.cid-u10zVuaLJw .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u10zVuaLJw .mbr-section-title {
  color: #3d4045;
}
.cid-u10zVuCZjs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u10zVuCZjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10zVuCZjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10zVuCZjs .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u10zVuCZjs .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u10zVuCZjs .container {
    padding: 0 16px;
  }
}
.cid-u10zVuCZjs .row {
  justify-content: center;
}
.cid-u10zVuCZjs .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10zVuCZjs .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10zVuCZjs .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u10zVuCZjs .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u10zVuCZjs .list {
    margin-bottom: 40px;
  }
}
.cid-u10zVuCZjs .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10zVuCZjs .list .item-wrap:hover,
.cid-u10zVuCZjs .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10zVuCZjs .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10zVuCZjs .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10zVuCZjs .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u10zVuCZjs .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u10zVuCZjs .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10zVuCZjs .contacts-wrapper .list .item-wrap:hover,
.cid-u10zVuCZjs .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10zVuCZjs .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u10zVuCZjs .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u10zVuCZjs .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u10zVuCZjs .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u10zVuCZjs .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u10zVuCZjs .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u10zVuCZjs .list-title {
  color: #becdc2;
}
.cid-u10zVuCZjs .list,
.cid-u10zVuCZjs .item-wrap {
  color: #ffffff;
}
.cid-u10I96V4YS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u10I96V4YS .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u10I96V4YS .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u10I96V4YS .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u10I96V4YS .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u10I96V4YS .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u10I96V4YS nav.navbar {
  position: fixed;
}
.cid-u10I96V4YS .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u10I96V4YS .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u10I96V4YS .nav-item {
    border: 0;
  }
}
.cid-u10I96V4YS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u10I96V4YS .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u10I96V4YS .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u10I96V4YS .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u10I96V4YS .title-wrap:hover span {
  color: white;
}
.cid-u10I96V4YS .title-wrap:hover:before {
  height: 100%;
}
.cid-u10I96V4YS .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-u10I96V4YS .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u10I96V4YS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u10I96V4YS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u10I96V4YS .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u10I96V4YS .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u10I96V4YS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u10I96V4YS .nav-link {
  position: relative;
}
.cid-u10I96V4YS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u10I96V4YS .container {
    flex-wrap: nowrap;
  }
}
.cid-u10I96V4YS .dropdown-menu,
.cid-u10I96V4YS .navbar.opened {
  background: #ffffff !important;
}
.cid-u10I96V4YS .nav-item:focus,
.cid-u10I96V4YS .nav-link:focus {
  outline: none;
}
.cid-u10I96V4YS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u10I96V4YS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u10I96V4YS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u10I96V4YS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u10I96V4YS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u10I96V4YS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u10I96V4YS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u10I96V4YS .navbar.opened {
  transition: all 0.3s;
}
.cid-u10I96V4YS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u10I96V4YS .navbar .navbar-logo img {
  width: auto;
}
.cid-u10I96V4YS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u10I96V4YS .navbar.collapsed {
  justify-content: center;
}
.cid-u10I96V4YS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u10I96V4YS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u10I96V4YS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u10I96V4YS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u10I96V4YS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u10I96V4YS .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-u10I96V4YS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u10I96V4YS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u10I96V4YS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u10I96V4YS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u10I96V4YS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u10I96V4YS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u10I96V4YS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u10I96V4YS .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-u10I96V4YS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u10I96V4YS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u10I96V4YS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u10I96V4YS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u10I96V4YS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u10I96V4YS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u10I96V4YS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u10I96V4YS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u10I96V4YS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u10I96V4YS .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-u10I96V4YS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u10I96V4YS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u10I96V4YS .dropdown-item.active,
.cid-u10I96V4YS .dropdown-item:active {
  background-color: transparent;
}
.cid-u10I96V4YS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u10I96V4YS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u10I96V4YS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u10I96V4YS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u10I96V4YS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u10I96V4YS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u10I96V4YS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u10I96V4YS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u10I96V4YS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u10I96V4YS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u10I96V4YS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u10I96V4YS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10I96V4YS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10I96V4YS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u10I96V4YS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10I96V4YS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u10I96V4YS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u10I96V4YS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10I96V4YS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u10I96V4YS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u10I96V4YS .navbar {
    height: 70px;
  }
  .cid-u10I96V4YS .navbar.opened {
    height: auto;
  }
  .cid-u10I96V4YS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u10I96V4YS .navbar-caption-wrap,
.cid-u10I96V4YS .title-wrap {
  color: #272727;
}
.cid-u10I97nTpf {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construction1-2-1380x868.webp");
}
.cid-u10I97nTpf .container-fluid {
  padding: 0 3rem;
}
.cid-u10I97nTpf .media-container-column {
  padding: 0 2rem;
}
.cid-u10I97nTpf .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u10I97nTpf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u10I97nTpf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10I97nTpf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10IpN6Isv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e0ebff;
}
.cid-u10IpN6Isv img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10IpN6Isv img:hover {
  transform: scale(1.1);
}
.cid-u10IpN6Isv .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10IpN6Isv h2 {
  padding: 0;
  margin: 0;
}
.cid-u10IpN6Isv .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10IpN6Isv .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10IpN6Isv .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-u10IpN6Isv .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-u10IpN6Isv .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-u10IpN6Isv .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-u10IpN6Isv .mbr-iconfont {
  margin: 0!important;
}
.cid-u10IpN6Isv .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10IpN6Isv .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10IpN6Isv .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-u10IpN6Isv .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-u10IpN6Isv .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10IpN6Isv H2 {
  color: #333333;
}
.cid-u10IpN6Isv .mbr-text {
  color: #767676;
}
.cid-u10IXmA9yI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
}
.cid-u10IXmA9yI img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10IXmA9yI img:hover {
  transform: scale(1.1);
}
.cid-u10IXmA9yI .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10IXmA9yI h2 {
  padding: 0;
  margin: 0;
}
.cid-u10IXmA9yI .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10IXmA9yI .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10IXmA9yI .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-u10IXmA9yI .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-u10IXmA9yI .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10IXmA9yI .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10IXmA9yI .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-u10IXmA9yI .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10IXmA9yI H2 {
  color: #333333;
}
.cid-u10IXmA9yI .mbr-text {
  color: #767676;
}
.cid-u10ORSicRw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e0ebff;
}
.cid-u10ORSicRw img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10ORSicRw img:hover {
  transform: scale(1.1);
}
.cid-u10ORSicRw .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10ORSicRw h2 {
  padding: 0;
  margin: 0;
}
.cid-u10ORSicRw .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10ORSicRw .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10ORSicRw .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-u10ORSicRw .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-u10ORSicRw .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-u10ORSicRw .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-u10ORSicRw .mbr-iconfont {
  margin: 0!important;
}
.cid-u10ORSicRw .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10ORSicRw .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10ORSicRw .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-u10ORSicRw .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-u10ORSicRw .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10ORSicRw H2 {
  color: #333333;
}
.cid-u10ORSicRw .mbr-text {
  color: #767676;
}
.cid-u10OUUnSKI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
}
.cid-u10OUUnSKI img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10OUUnSKI img:hover {
  transform: scale(1.1);
}
.cid-u10OUUnSKI .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10OUUnSKI h2 {
  padding: 0;
  margin: 0;
}
.cid-u10OUUnSKI .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10OUUnSKI .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10OUUnSKI .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-u10OUUnSKI .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-u10OUUnSKI .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10OUUnSKI .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10OUUnSKI .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-u10OUUnSKI .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10OUUnSKI H2 {
  color: #333333;
}
.cid-u10OUUnSKI .mbr-text {
  color: #767676;
}
.cid-u10PTzHZmD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e0ebff;
}
.cid-u10PTzHZmD img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10PTzHZmD img:hover {
  transform: scale(1.1);
}
.cid-u10PTzHZmD .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10PTzHZmD h2 {
  padding: 0;
  margin: 0;
}
.cid-u10PTzHZmD .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10PTzHZmD .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10PTzHZmD .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-u10PTzHZmD .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-u10PTzHZmD .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-u10PTzHZmD .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-u10PTzHZmD .mbr-iconfont {
  margin: 0!important;
}
.cid-u10PTzHZmD .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10PTzHZmD .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10PTzHZmD .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-u10PTzHZmD .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-u10PTzHZmD .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10PTzHZmD H2 {
  color: #333333;
}
.cid-u10PTzHZmD .mbr-text {
  color: #767676;
}
.cid-u10Q0JLSoq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
}
.cid-u10Q0JLSoq img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10Q0JLSoq img:hover {
  transform: scale(1.1);
}
.cid-u10Q0JLSoq .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10Q0JLSoq h2 {
  padding: 0;
  margin: 0;
}
.cid-u10Q0JLSoq .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10Q0JLSoq .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10Q0JLSoq .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-u10Q0JLSoq .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-u10Q0JLSoq .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10Q0JLSoq .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10Q0JLSoq .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-u10Q0JLSoq .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10Q0JLSoq H2 {
  color: #333333;
}
.cid-u10Q0JLSoq .mbr-text {
  color: #767676;
}
.cid-u10QCrwW6l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e0ebff;
}
.cid-u10QCrwW6l img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-u10QCrwW6l img:hover {
  transform: scale(1.1);
}
.cid-u10QCrwW6l .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-u10QCrwW6l h2 {
  padding: 0;
  margin: 0;
}
.cid-u10QCrwW6l .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u10QCrwW6l .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-u10QCrwW6l .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-u10QCrwW6l .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-u10QCrwW6l .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-u10QCrwW6l .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-u10QCrwW6l .mbr-iconfont {
  margin: 0!important;
}
.cid-u10QCrwW6l .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u10QCrwW6l .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u10QCrwW6l .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-u10QCrwW6l .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-u10QCrwW6l .text-col {
    padding: 2rem 1rem;
  }
}
.cid-u10QCrwW6l H2 {
  color: #333333;
}
.cid-u10QCrwW6l .mbr-text {
  color: #767676;
}
.cid-u10I985Vpv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u10I985Vpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10I985Vpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10I985Vpv .container,
.cid-u10I985Vpv .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u10I985Vpv .container,
  .cid-u10I985Vpv .container-fluid {
    padding: 0 20px;
  }
}
.cid-u10I985Vpv .row {
  justify-content: center;
}
.cid-u10I985Vpv .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u10I985Vpv .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u10I985Vpv .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u10I985Vpv .item {
  margin-bottom: 40px;
}
.cid-u10I985Vpv .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u10I985Vpv .mbr-section-title {
  color: #3d4045;
}
.cid-u10I98rTtc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u10I98rTtc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10I98rTtc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10I98rTtc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u10I98rTtc .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u10I98rTtc .container {
    padding: 0 16px;
  }
}
.cid-u10I98rTtc .row {
  justify-content: center;
}
.cid-u10I98rTtc .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10I98rTtc .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10I98rTtc .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u10I98rTtc .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u10I98rTtc .list {
    margin-bottom: 40px;
  }
}
.cid-u10I98rTtc .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10I98rTtc .list .item-wrap:hover,
.cid-u10I98rTtc .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10I98rTtc .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10I98rTtc .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10I98rTtc .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u10I98rTtc .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u10I98rTtc .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10I98rTtc .contacts-wrapper .list .item-wrap:hover,
.cid-u10I98rTtc .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10I98rTtc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u10I98rTtc .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u10I98rTtc .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u10I98rTtc .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u10I98rTtc .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u10I98rTtc .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u10I98rTtc .list-title {
  color: #becdc2;
}
.cid-u10I98rTtc .list,
.cid-u10I98rTtc .item-wrap {
  color: #ffffff;
}
.cid-u10SKYN4ZM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u10SKYN4ZM .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u10SKYN4ZM .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u10SKYN4ZM .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u10SKYN4ZM .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u10SKYN4ZM .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u10SKYN4ZM nav.navbar {
  position: fixed;
}
.cid-u10SKYN4ZM .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u10SKYN4ZM .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u10SKYN4ZM .nav-item {
    border: 0;
  }
}
.cid-u10SKYN4ZM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u10SKYN4ZM .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u10SKYN4ZM .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u10SKYN4ZM .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u10SKYN4ZM .title-wrap:hover span {
  color: white;
}
.cid-u10SKYN4ZM .title-wrap:hover:before {
  height: 100%;
}
.cid-u10SKYN4ZM .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-u10SKYN4ZM .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u10SKYN4ZM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u10SKYN4ZM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u10SKYN4ZM .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u10SKYN4ZM .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u10SKYN4ZM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u10SKYN4ZM .nav-link {
  position: relative;
}
.cid-u10SKYN4ZM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u10SKYN4ZM .container {
    flex-wrap: nowrap;
  }
}
.cid-u10SKYN4ZM .dropdown-menu,
.cid-u10SKYN4ZM .navbar.opened {
  background: #ffffff !important;
}
.cid-u10SKYN4ZM .nav-item:focus,
.cid-u10SKYN4ZM .nav-link:focus {
  outline: none;
}
.cid-u10SKYN4ZM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u10SKYN4ZM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u10SKYN4ZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u10SKYN4ZM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u10SKYN4ZM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u10SKYN4ZM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u10SKYN4ZM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u10SKYN4ZM .navbar.opened {
  transition: all 0.3s;
}
.cid-u10SKYN4ZM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u10SKYN4ZM .navbar .navbar-logo img {
  width: auto;
}
.cid-u10SKYN4ZM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u10SKYN4ZM .navbar.collapsed {
  justify-content: center;
}
.cid-u10SKYN4ZM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u10SKYN4ZM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u10SKYN4ZM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u10SKYN4ZM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u10SKYN4ZM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u10SKYN4ZM .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-u10SKYN4ZM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u10SKYN4ZM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u10SKYN4ZM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u10SKYN4ZM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u10SKYN4ZM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u10SKYN4ZM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u10SKYN4ZM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u10SKYN4ZM .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-u10SKYN4ZM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u10SKYN4ZM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u10SKYN4ZM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u10SKYN4ZM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u10SKYN4ZM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u10SKYN4ZM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u10SKYN4ZM .navbar.navbar-short {
  min-height: 60px;
}
.cid-u10SKYN4ZM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u10SKYN4ZM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u10SKYN4ZM .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-u10SKYN4ZM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u10SKYN4ZM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u10SKYN4ZM .dropdown-item.active,
.cid-u10SKYN4ZM .dropdown-item:active {
  background-color: transparent;
}
.cid-u10SKYN4ZM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u10SKYN4ZM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u10SKYN4ZM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u10SKYN4ZM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u10SKYN4ZM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u10SKYN4ZM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u10SKYN4ZM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u10SKYN4ZM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u10SKYN4ZM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u10SKYN4ZM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u10SKYN4ZM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u10SKYN4ZM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10SKYN4ZM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u10SKYN4ZM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u10SKYN4ZM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10SKYN4ZM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u10SKYN4ZM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u10SKYN4ZM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u10SKYN4ZM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u10SKYN4ZM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u10SKYN4ZM .navbar {
    height: 70px;
  }
  .cid-u10SKYN4ZM .navbar.opened {
    height: auto;
  }
  .cid-u10SKYN4ZM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u10SKYN4ZM .navbar-caption-wrap,
.cid-u10SKYN4ZM .title-wrap {
  color: #272727;
}
.cid-u10SW2Ien3 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/background1-2.webp");
}
.cid-u10SW2Ien3 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-u10SW2Ien3 input,
.cid-u10SW2Ien3 textarea {
  border-radius: 0;
}
.cid-u10SW2Ien3 input:hover,
.cid-u10SW2Ien3 textarea:hover {
  border: 1px solid transparent !important;
}
.cid-u10SW2Ien3 textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-u10SW2Ien3 .col-auto {
    margin: auto;
  }
}
.cid-u10SW2Ien3 .mbr-main-subtitle {
  background: #f7df67;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-u10SW2Ien3 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #f7df67;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u10SW2Ien3 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-u10SW2Ien3 .btn {
  padding: 1rem 3rem;
}
.cid-u10SW2Ien3 .mbr-section-text {
  color: #ffffff;
}
.cid-u10SW2Ien3 .mbr-section-title {
  color: #ffffff;
}
.cid-u10SX2hvOW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u10SX2hvOW .google-map {
  height: 35rem;
  position: relative;
}
.cid-u10SX2hvOW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u10SX2hvOW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u10SX2hvOW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u10SX2hvOW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u10SL0kGyf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u10SL0kGyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10SL0kGyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10SL0kGyf .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u10SL0kGyf .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u10SL0kGyf .container {
    padding: 0 16px;
  }
}
.cid-u10SL0kGyf .row {
  justify-content: center;
}
.cid-u10SL0kGyf .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10SL0kGyf .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10SL0kGyf .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u10SL0kGyf .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u10SL0kGyf .list {
    margin-bottom: 40px;
  }
}
.cid-u10SL0kGyf .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10SL0kGyf .list .item-wrap:hover,
.cid-u10SL0kGyf .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10SL0kGyf .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u10SL0kGyf .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u10SL0kGyf .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u10SL0kGyf .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u10SL0kGyf .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u10SL0kGyf .contacts-wrapper .list .item-wrap:hover,
.cid-u10SL0kGyf .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u10SL0kGyf .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u10SL0kGyf .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u10SL0kGyf .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u10SL0kGyf .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u10SL0kGyf .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u10SL0kGyf .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u10SL0kGyf .list-title {
  color: #becdc2;
}
.cid-u10SL0kGyf .list,
.cid-u10SL0kGyf .item-wrap {
  color: #ffffff;
}
.cid-u0ZLQALLG3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0ZLQALLG3 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u0ZLQALLG3 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u0ZLQALLG3 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u0ZLQALLG3 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u0ZLQALLG3 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u0ZLQALLG3 nav.navbar {
  position: fixed;
}
.cid-u0ZLQALLG3 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u0ZLQALLG3 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u0ZLQALLG3 .nav-item {
    border: 0;
  }
}
.cid-u0ZLQALLG3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u0ZLQALLG3 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u0ZLQALLG3 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u0ZLQALLG3 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u0ZLQALLG3 .title-wrap:hover span {
  color: white;
}
.cid-u0ZLQALLG3 .title-wrap:hover:before {
  height: 100%;
}
.cid-u0ZLQALLG3 .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-u0ZLQALLG3 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u0ZLQALLG3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0ZLQALLG3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0ZLQALLG3 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u0ZLQALLG3 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u0ZLQALLG3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0ZLQALLG3 .nav-link {
  position: relative;
}
.cid-u0ZLQALLG3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u0ZLQALLG3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u0ZLQALLG3 .dropdown-menu,
.cid-u0ZLQALLG3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u0ZLQALLG3 .nav-item:focus,
.cid-u0ZLQALLG3 .nav-link:focus {
  outline: none;
}
.cid-u0ZLQALLG3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0ZLQALLG3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0ZLQALLG3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0ZLQALLG3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0ZLQALLG3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0ZLQALLG3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0ZLQALLG3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u0ZLQALLG3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0ZLQALLG3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0ZLQALLG3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0ZLQALLG3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0ZLQALLG3 .navbar.collapsed {
  justify-content: center;
}
.cid-u0ZLQALLG3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0ZLQALLG3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0ZLQALLG3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0ZLQALLG3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0ZLQALLG3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0ZLQALLG3 .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-u0ZLQALLG3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0ZLQALLG3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0ZLQALLG3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0ZLQALLG3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0ZLQALLG3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0ZLQALLG3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0ZLQALLG3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0ZLQALLG3 .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-u0ZLQALLG3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0ZLQALLG3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0ZLQALLG3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0ZLQALLG3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0ZLQALLG3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0ZLQALLG3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0ZLQALLG3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0ZLQALLG3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0ZLQALLG3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0ZLQALLG3 .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-u0ZLQALLG3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0ZLQALLG3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0ZLQALLG3 .dropdown-item.active,
.cid-u0ZLQALLG3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0ZLQALLG3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0ZLQALLG3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0ZLQALLG3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0ZLQALLG3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0ZLQALLG3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0ZLQALLG3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0ZLQALLG3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0ZLQALLG3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0ZLQALLG3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0ZLQALLG3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0ZLQALLG3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0ZLQALLG3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZLQALLG3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0ZLQALLG3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0ZLQALLG3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZLQALLG3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0ZLQALLG3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0ZLQALLG3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0ZLQALLG3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0ZLQALLG3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0ZLQALLG3 .navbar {
    height: 70px;
  }
  .cid-u0ZLQALLG3 .navbar.opened {
    height: auto;
  }
  .cid-u0ZLQALLG3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0ZLQALLG3 .navbar-caption-wrap,
.cid-u0ZLQALLG3 .title-wrap {
  color: #272727;
}
.cid-u16dq2VAsD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u16dq2VAsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u16dq2VAsD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u16dq2VAsD .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u16dq2VAsD .container {
    padding: 0 16px;
  }
}
.cid-u16dq2VAsD .row {
  justify-content: center;
}
.cid-u16dq2VAsD .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u16dq2VAsD .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u16dq2VAsD .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u16dq2VAsD .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u16dq2VAsD .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u16dq2VAsD .form-wrap {
  padding-right: 48px;
}
@media (max-width: 1200px) {
  .cid-u16dq2VAsD .form-wrap {
    padding: 0;
  }
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-control {
  padding: 8px 16px;
  border: 1px solid #000000 !important;
  box-shadow: none;
  border-radius: .5rem !important;
  background-color: transparent;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group textarea {
  min-height: 120px;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-u16dq2VAsD .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 16px;
  min-height: auto;
}
.cid-u16dq2VAsD .image-wrapper {
  height: 100%;
}
.cid-u16dq2VAsD .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 1rem !important;
}
.cid-u16dq2VAsD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u16dq2VAsD .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u16dq2VAsD .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u0ZLQBC5uF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0ZLQBC5uF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZLQBC5uF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZLQBC5uF .container,
.cid-u0ZLQBC5uF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u0ZLQBC5uF .container,
  .cid-u0ZLQBC5uF .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0ZLQBC5uF .row {
  justify-content: center;
}
.cid-u0ZLQBC5uF .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u0ZLQBC5uF .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u0ZLQBC5uF .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u0ZLQBC5uF .item {
  margin-bottom: 40px;
}
.cid-u0ZLQBC5uF .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u0ZLQBC5uF .mbr-section-title {
  color: #3d4045;
}
.cid-u0ZLQBT8uc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u0ZLQBT8uc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZLQBT8uc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0ZLQBT8uc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u0ZLQBT8uc .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0ZLQBT8uc .container {
    padding: 0 16px;
  }
}
.cid-u0ZLQBT8uc .row {
  justify-content: center;
}
.cid-u0ZLQBT8uc .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZLQBT8uc .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZLQBT8uc .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u0ZLQBT8uc .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u0ZLQBT8uc .list {
    margin-bottom: 40px;
  }
}
.cid-u0ZLQBT8uc .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZLQBT8uc .list .item-wrap:hover,
.cid-u0ZLQBT8uc .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZLQBT8uc .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u0ZLQBT8uc .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u0ZLQBT8uc .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u0ZLQBT8uc .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u0ZLQBT8uc .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u0ZLQBT8uc .contacts-wrapper .list .item-wrap:hover,
.cid-u0ZLQBT8uc .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u0ZLQBT8uc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u0ZLQBT8uc .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u0ZLQBT8uc .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u0ZLQBT8uc .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u0ZLQBT8uc .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u0ZLQBT8uc .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u0ZLQBT8uc .list-title {
  color: #becdc2;
}
.cid-u0ZLQBT8uc .list,
.cid-u0ZLQBT8uc .item-wrap {
  color: #ffffff;
}
.cid-u11lz5Mazp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u11lz5Mazp .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u11lz5Mazp .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u11lz5Mazp .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u11lz5Mazp .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u11lz5Mazp .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u11lz5Mazp nav.navbar {
  position: fixed;
}
.cid-u11lz5Mazp .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u11lz5Mazp .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u11lz5Mazp .nav-item {
    border: 0;
  }
}
.cid-u11lz5Mazp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u11lz5Mazp .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u11lz5Mazp .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u11lz5Mazp .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u11lz5Mazp .title-wrap:hover span {
  color: white;
}
.cid-u11lz5Mazp .title-wrap:hover:before {
  height: 100%;
}
.cid-u11lz5Mazp .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-u11lz5Mazp .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u11lz5Mazp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u11lz5Mazp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u11lz5Mazp .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u11lz5Mazp .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u11lz5Mazp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u11lz5Mazp .nav-link {
  position: relative;
}
.cid-u11lz5Mazp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u11lz5Mazp .container {
    flex-wrap: nowrap;
  }
}
.cid-u11lz5Mazp .dropdown-menu,
.cid-u11lz5Mazp .navbar.opened {
  background: #ffffff !important;
}
.cid-u11lz5Mazp .nav-item:focus,
.cid-u11lz5Mazp .nav-link:focus {
  outline: none;
}
.cid-u11lz5Mazp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u11lz5Mazp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u11lz5Mazp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u11lz5Mazp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u11lz5Mazp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u11lz5Mazp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u11lz5Mazp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u11lz5Mazp .navbar.opened {
  transition: all 0.3s;
}
.cid-u11lz5Mazp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u11lz5Mazp .navbar .navbar-logo img {
  width: auto;
}
.cid-u11lz5Mazp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u11lz5Mazp .navbar.collapsed {
  justify-content: center;
}
.cid-u11lz5Mazp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u11lz5Mazp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u11lz5Mazp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u11lz5Mazp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u11lz5Mazp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u11lz5Mazp .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-u11lz5Mazp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u11lz5Mazp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u11lz5Mazp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u11lz5Mazp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u11lz5Mazp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u11lz5Mazp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u11lz5Mazp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u11lz5Mazp .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-u11lz5Mazp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u11lz5Mazp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u11lz5Mazp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u11lz5Mazp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u11lz5Mazp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u11lz5Mazp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u11lz5Mazp .navbar.navbar-short {
  min-height: 60px;
}
.cid-u11lz5Mazp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u11lz5Mazp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u11lz5Mazp .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-u11lz5Mazp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u11lz5Mazp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u11lz5Mazp .dropdown-item.active,
.cid-u11lz5Mazp .dropdown-item:active {
  background-color: transparent;
}
.cid-u11lz5Mazp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u11lz5Mazp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u11lz5Mazp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u11lz5Mazp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u11lz5Mazp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u11lz5Mazp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u11lz5Mazp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u11lz5Mazp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u11lz5Mazp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u11lz5Mazp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u11lz5Mazp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u11lz5Mazp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u11lz5Mazp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u11lz5Mazp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u11lz5Mazp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u11lz5Mazp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u11lz5Mazp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u11lz5Mazp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u11lz5Mazp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u11lz5Mazp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u11lz5Mazp .navbar {
    height: 70px;
  }
  .cid-u11lz5Mazp .navbar.opened {
    height: auto;
  }
  .cid-u11lz5Mazp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u11lz5Mazp .navbar-caption-wrap,
.cid-u11lz5Mazp .title-wrap {
  color: #272727;
}
#custom-html-3g {
  /* Type valid CSS here */
}
#custom-html-3g p {
  font-size: 20px;
  color: #777;
  text-align: left;
}
#custom-html-3l p {
  font-size: 20px;
  color: #777;
}
.cid-u11lz7Ijdh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u11lz7Ijdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u11lz7Ijdh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u11lz7Ijdh .container,
.cid-u11lz7Ijdh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u11lz7Ijdh .container,
  .cid-u11lz7Ijdh .container-fluid {
    padding: 0 20px;
  }
}
.cid-u11lz7Ijdh .row {
  justify-content: center;
}
.cid-u11lz7Ijdh .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u11lz7Ijdh .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u11lz7Ijdh .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u11lz7Ijdh .item {
  margin-bottom: 40px;
}
.cid-u11lz7Ijdh .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u11lz7Ijdh .mbr-section-title {
  color: #3d4045;
}
.cid-u11lz8aGpY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u11lz8aGpY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u11lz8aGpY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u11lz8aGpY .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u11lz8aGpY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u11lz8aGpY .container {
    padding: 0 16px;
  }
}
.cid-u11lz8aGpY .row {
  justify-content: center;
}
.cid-u11lz8aGpY .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u11lz8aGpY .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u11lz8aGpY .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u11lz8aGpY .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u11lz8aGpY .list {
    margin-bottom: 40px;
  }
}
.cid-u11lz8aGpY .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u11lz8aGpY .list .item-wrap:hover,
.cid-u11lz8aGpY .list .item-wrap:focus {
  color: #706cff;
}
.cid-u11lz8aGpY .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u11lz8aGpY .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u11lz8aGpY .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u11lz8aGpY .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u11lz8aGpY .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u11lz8aGpY .contacts-wrapper .list .item-wrap:hover,
.cid-u11lz8aGpY .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u11lz8aGpY .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u11lz8aGpY .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u11lz8aGpY .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u11lz8aGpY .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u11lz8aGpY .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u11lz8aGpY .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u11lz8aGpY .list-title {
  color: #becdc2;
}
.cid-u11lz8aGpY .list,
.cid-u11lz8aGpY .item-wrap {
  color: #ffffff;
}
.cid-u16rj8dsuJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u16rj8dsuJ .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u16rj8dsuJ .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u16rj8dsuJ .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u16rj8dsuJ .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u16rj8dsuJ .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u16rj8dsuJ nav.navbar {
  position: fixed;
}
.cid-u16rj8dsuJ .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u16rj8dsuJ .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u16rj8dsuJ .nav-item {
    border: 0;
  }
}
.cid-u16rj8dsuJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u16rj8dsuJ .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u16rj8dsuJ .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u16rj8dsuJ .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u16rj8dsuJ .title-wrap:hover span {
  color: white;
}
.cid-u16rj8dsuJ .title-wrap:hover:before {
  height: 100%;
}
.cid-u16rj8dsuJ .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-u16rj8dsuJ .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u16rj8dsuJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u16rj8dsuJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u16rj8dsuJ .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u16rj8dsuJ .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u16rj8dsuJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u16rj8dsuJ .nav-link {
  position: relative;
}
.cid-u16rj8dsuJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u16rj8dsuJ .container {
    flex-wrap: nowrap;
  }
}
.cid-u16rj8dsuJ .dropdown-menu,
.cid-u16rj8dsuJ .navbar.opened {
  background: #ffffff !important;
}
.cid-u16rj8dsuJ .nav-item:focus,
.cid-u16rj8dsuJ .nav-link:focus {
  outline: none;
}
.cid-u16rj8dsuJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u16rj8dsuJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u16rj8dsuJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u16rj8dsuJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u16rj8dsuJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u16rj8dsuJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u16rj8dsuJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u16rj8dsuJ .navbar.opened {
  transition: all 0.3s;
}
.cid-u16rj8dsuJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u16rj8dsuJ .navbar .navbar-logo img {
  width: auto;
}
.cid-u16rj8dsuJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u16rj8dsuJ .navbar.collapsed {
  justify-content: center;
}
.cid-u16rj8dsuJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u16rj8dsuJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u16rj8dsuJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u16rj8dsuJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u16rj8dsuJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u16rj8dsuJ .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-u16rj8dsuJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u16rj8dsuJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u16rj8dsuJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u16rj8dsuJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u16rj8dsuJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u16rj8dsuJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u16rj8dsuJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u16rj8dsuJ .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-u16rj8dsuJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u16rj8dsuJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u16rj8dsuJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u16rj8dsuJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u16rj8dsuJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u16rj8dsuJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u16rj8dsuJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-u16rj8dsuJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u16rj8dsuJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u16rj8dsuJ .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-u16rj8dsuJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u16rj8dsuJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u16rj8dsuJ .dropdown-item.active,
.cid-u16rj8dsuJ .dropdown-item:active {
  background-color: transparent;
}
.cid-u16rj8dsuJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u16rj8dsuJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u16rj8dsuJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u16rj8dsuJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u16rj8dsuJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u16rj8dsuJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u16rj8dsuJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u16rj8dsuJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u16rj8dsuJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u16rj8dsuJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u16rj8dsuJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u16rj8dsuJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u16rj8dsuJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u16rj8dsuJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u16rj8dsuJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u16rj8dsuJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u16rj8dsuJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u16rj8dsuJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u16rj8dsuJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u16rj8dsuJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u16rj8dsuJ .navbar {
    height: 70px;
  }
  .cid-u16rj8dsuJ .navbar.opened {
    height: auto;
  }
  .cid-u16rj8dsuJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u16rj8dsuJ .navbar-caption-wrap,
.cid-u16rj8dsuJ .title-wrap {
  color: #272727;
}
#custom-html-3i {
  /* Type valid CSS here */
}
#custom-html-3i p {
  font-size: 20px;
  color: #777;
  text-align: left;
}
.cid-u16rj8Euwn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u16rj8Euwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u16rj8Euwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u16rj8Euwn .container,
.cid-u16rj8Euwn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u16rj8Euwn .container,
  .cid-u16rj8Euwn .container-fluid {
    padding: 0 20px;
  }
}
.cid-u16rj8Euwn .row {
  justify-content: center;
}
.cid-u16rj8Euwn .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u16rj8Euwn .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u16rj8Euwn .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u16rj8Euwn .item {
  margin-bottom: 40px;
}
.cid-u16rj8Euwn .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u16rj8Euwn .mbr-section-title {
  color: #3d4045;
}
.cid-u16rj8UVCR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u16rj8UVCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u16rj8UVCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u16rj8UVCR .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u16rj8UVCR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u16rj8UVCR .container {
    padding: 0 16px;
  }
}
.cid-u16rj8UVCR .row {
  justify-content: center;
}
.cid-u16rj8UVCR .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u16rj8UVCR .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u16rj8UVCR .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u16rj8UVCR .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u16rj8UVCR .list {
    margin-bottom: 40px;
  }
}
.cid-u16rj8UVCR .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u16rj8UVCR .list .item-wrap:hover,
.cid-u16rj8UVCR .list .item-wrap:focus {
  color: #706cff;
}
.cid-u16rj8UVCR .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u16rj8UVCR .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u16rj8UVCR .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u16rj8UVCR .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u16rj8UVCR .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u16rj8UVCR .contacts-wrapper .list .item-wrap:hover,
.cid-u16rj8UVCR .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u16rj8UVCR .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u16rj8UVCR .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u16rj8UVCR .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u16rj8UVCR .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u16rj8UVCR .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u16rj8UVCR .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u16rj8UVCR .list-title {
  color: #becdc2;
}
.cid-u16rj8UVCR .list,
.cid-u16rj8UVCR .item-wrap {
  color: #ffffff;
}
.cid-u173MwDnrZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u173MwDnrZ .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-u173MwDnrZ .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-u173MwDnrZ .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-u173MwDnrZ .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-u173MwDnrZ .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-u173MwDnrZ nav.navbar {
  position: fixed;
}
.cid-u173MwDnrZ .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-u173MwDnrZ .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-u173MwDnrZ .nav-item {
    border: 0;
  }
}
.cid-u173MwDnrZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u173MwDnrZ .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-u173MwDnrZ .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-u173MwDnrZ .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-u173MwDnrZ .title-wrap:hover span {
  color: white;
}
.cid-u173MwDnrZ .title-wrap:hover:before {
  height: 100%;
}
.cid-u173MwDnrZ .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-u173MwDnrZ .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-u173MwDnrZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u173MwDnrZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u173MwDnrZ .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-u173MwDnrZ .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-u173MwDnrZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u173MwDnrZ .nav-link {
  position: relative;
}
.cid-u173MwDnrZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u173MwDnrZ .container {
    flex-wrap: nowrap;
  }
}
.cid-u173MwDnrZ .dropdown-menu,
.cid-u173MwDnrZ .navbar.opened {
  background: #ffffff !important;
}
.cid-u173MwDnrZ .nav-item:focus,
.cid-u173MwDnrZ .nav-link:focus {
  outline: none;
}
.cid-u173MwDnrZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u173MwDnrZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u173MwDnrZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u173MwDnrZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u173MwDnrZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u173MwDnrZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u173MwDnrZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-u173MwDnrZ .navbar.opened {
  transition: all 0.3s;
}
.cid-u173MwDnrZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u173MwDnrZ .navbar .navbar-logo img {
  width: auto;
}
.cid-u173MwDnrZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u173MwDnrZ .navbar.collapsed {
  justify-content: center;
}
.cid-u173MwDnrZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u173MwDnrZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u173MwDnrZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u173MwDnrZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u173MwDnrZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u173MwDnrZ .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-u173MwDnrZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u173MwDnrZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u173MwDnrZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u173MwDnrZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u173MwDnrZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u173MwDnrZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u173MwDnrZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u173MwDnrZ .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-u173MwDnrZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u173MwDnrZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u173MwDnrZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u173MwDnrZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u173MwDnrZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u173MwDnrZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u173MwDnrZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-u173MwDnrZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u173MwDnrZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u173MwDnrZ .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-u173MwDnrZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u173MwDnrZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u173MwDnrZ .dropdown-item.active,
.cid-u173MwDnrZ .dropdown-item:active {
  background-color: transparent;
}
.cid-u173MwDnrZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u173MwDnrZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u173MwDnrZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u173MwDnrZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u173MwDnrZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u173MwDnrZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u173MwDnrZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u173MwDnrZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u173MwDnrZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u173MwDnrZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u173MwDnrZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u173MwDnrZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u173MwDnrZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u173MwDnrZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u173MwDnrZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u173MwDnrZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u173MwDnrZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u173MwDnrZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u173MwDnrZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u173MwDnrZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u173MwDnrZ .navbar {
    height: 70px;
  }
  .cid-u173MwDnrZ .navbar.opened {
    height: auto;
  }
  .cid-u173MwDnrZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u173MwDnrZ .navbar-caption-wrap,
.cid-u173MwDnrZ .title-wrap {
  color: #272727;
}
.cid-u173MwS5l7 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construction1-2-1380x868.webp");
}
.cid-u173MwS5l7 .container-fluid {
  padding: 0 3rem;
}
.cid-u173MwS5l7 .media-container-column {
  padding: 0 2rem;
}
.cid-u173MwS5l7 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u173MwS5l7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u173MwS5l7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u173MwS5l7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u174k8sw7Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u174k8sw7Z .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-u174k8sw7Z .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-u174k8sw7Z .mbr-section-subtitle {
  color: #767676;
}
.cid-u174k8sw7Z .panel-group {
  width: 100%;
}
.cid-u174k8sw7Z .panel-text {
  color: #767676;
}
.cid-u174k8sw7Z .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-u174k8sw7Z .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-u174k8sw7Z .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f6f6f6;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-u174k8sw7Z .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-u174k8sw7Z .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-u174k8sw7Z .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-u174k8sw7Z .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-u174k8sw7Z .card .panel-body {
  background: #ffffff;
}
.cid-u174k8sw7Z .sign {
  color: #232323;
}
.cid-u174k8sw7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u174k8sw7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u173MxBBhf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u173MxBBhf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u173MxBBhf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u173MxBBhf .container,
.cid-u173MxBBhf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u173MxBBhf .container,
  .cid-u173MxBBhf .container-fluid {
    padding: 0 20px;
  }
}
.cid-u173MxBBhf .row {
  justify-content: center;
}
.cid-u173MxBBhf .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u173MxBBhf .title-wrapper .mbr-section-title {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .cid-u173MxBBhf .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u173MxBBhf .item {
  margin-bottom: 40px;
}
.cid-u173MxBBhf .item .item-wrapper .item-img img {
  height: 130px;
  object-fit: contain;
}
.cid-u173MxBBhf .mbr-section-title {
  color: #3d4045;
}
.cid-u173MxQKSR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2a5d;
  flex-direction: column;
  justify-content: center;
}
.cid-u173MxQKSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u173MxQKSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u173MxQKSR .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u173MxQKSR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u173MxQKSR .container {
    padding: 0 16px;
  }
}
.cid-u173MxQKSR .row {
  justify-content: center;
}
.cid-u173MxQKSR .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u173MxQKSR .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u173MxQKSR .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-u173MxQKSR .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u173MxQKSR .list {
    margin-bottom: 40px;
  }
}
.cid-u173MxQKSR .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u173MxQKSR .list .item-wrap:hover,
.cid-u173MxQKSR .list .item-wrap:focus {
  color: #706cff;
}
.cid-u173MxQKSR .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-u173MxQKSR .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u173MxQKSR .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-u173MxQKSR .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-u173MxQKSR .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-u173MxQKSR .contacts-wrapper .list .item-wrap:hover,
.cid-u173MxQKSR .contacts-wrapper .list .item-wrap:focus {
  color: #706cff;
}
.cid-u173MxQKSR .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u173MxQKSR .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-u173MxQKSR .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-u173MxQKSR .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #706cff;
}
.cid-u173MxQKSR .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-u173MxQKSR .mbr-copy {
  margin-bottom: 0;
  color: #becdc2;
}
.cid-u173MxQKSR .list-title {
  color: #becdc2;
}
.cid-u173MxQKSR .list,
.cid-u173MxQKSR .item-wrap {
  color: #ffffff;
}
