body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    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-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #fff04f !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #fff04f !important;
  border-color: #fff04f !important;
  transition: all .5s;
  color: #4f4800 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #4f4800 !important;
  background-color: #ffe902 !important;
  border-color: #ffe902 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #4f4800 !important;
  background-color: #ffe902 !important;
  border-color: #ffe902 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8d400 !important;
  color: #e8d400 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #4f4800 !important;
  background-color: #fff04f !important;
  border-color: #fff04f !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #4f4800 !important;
  background-color: #fff04f !important;
  border-color: #fff04f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #fff04f !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8d400 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fff04f;
  border-color: #fff04f;
  color: #696000;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fff04f;
}
.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: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #fff04f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #fff04f;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #fff04f;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fff04f;
  color: #000000;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fff04f;
  border-bottom-color: #fff04f;
}
.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: #fff04f !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: #2bdc9d !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%;
}
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='%23fff04f' %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;
}
.cid-ujUMHgGDKg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUMHgGDKg nav.navbar {
  position: fixed;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUMHgGDKg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUMHgGDKg .dropdown-item:hover,
.cid-ujUMHgGDKg .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:hover span {
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUMHgGDKg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUMHgGDKg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUMHgGDKg .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUMHgGDKg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUMHgGDKg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown-menu,
.cid-ujUMHgGDKg .navbar.opened {
  background: #000000 !important;
}
.cid-ujUMHgGDKg .nav-item:focus,
.cid-ujUMHgGDKg .nav-link:focus {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUMHgGDKg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUMHgGDKg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUMHgGDKg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUMHgGDKg .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUMHgGDKg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUMHgGDKg .navbar.collapsed {
  justify-content: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUMHgGDKg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUMHgGDKg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUMHgGDKg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUMHgGDKg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUMHgGDKg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUMHgGDKg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUMHgGDKg .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUMHgGDKg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown-item.active,
.cid-ujUMHgGDKg .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUMHgGDKg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUMHgGDKg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUMHgGDKg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUMHgGDKg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUMHgGDKg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg .navbar-dropdown {
  position: fixed;
}
.cid-ujUMHgGDKg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUMHgGDKg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUMHgGDKg .navbar {
    height: 70px;
  }
  .cid-ujUMHgGDKg .navbar.opened {
    height: auto;
  }
  .cid-ujUMHgGDKg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujURyNhsPY {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujURyNhsPY .mbr-section-subtitle,
.cid-ujURyNhsPY .caption-text {
  color: #8d97ad;
}
.cid-ujURyNhsPY .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujURyNhsPY .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujURyNhsPY .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujURyNhsPY .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujURjRO1ZB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujURjRO1ZB .mbr-section-subtitle {
  color: #000000;
}
.cid-ujURjRO1ZB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujURjRO1ZB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujURjRO1ZB .mbr-section-title {
  color: #000000;
}
.cid-ujUSbX69WT {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUSbX69WT .mbr-section-subtitle,
.cid-ujUSbX69WT .caption-text {
  color: #8d97ad;
}
.cid-ujUSbX69WT .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUSbX69WT .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUSbX69WT .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUSbX69WT .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujURNfciV6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujURNfciV6 .mbr-section-subtitle {
  color: #000000;
}
.cid-ujURNfciV6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujURNfciV6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUSnB3mxv {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUSnB3mxv .mbr-section-subtitle,
.cid-ujUSnB3mxv .caption-text {
  color: #8d97ad;
}
.cid-ujUSnB3mxv .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUSnB3mxv .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUSnB3mxv .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUSnB3mxv .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUSrrySaG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUSrrySaG .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUSrrySaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUSrrySaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUSBdunSm {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUSBdunSm .mbr-section-subtitle,
.cid-ujUSBdunSm .caption-text {
  color: #8d97ad;
}
.cid-ujUSBdunSm .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUSBdunSm .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUSBdunSm .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUSBdunSm .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUSI5imxj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUSI5imxj .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUSI5imxj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUSI5imxj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNkpRVX8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNkpRVX8 .mbr-overlay {
  background: #efefef;
}
.cid-uHMNkpRVX8 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNkpRVX8 .client-name {
  color: #8d97ad;
}
.cid-uHMNkpRVX8 .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNkpRVX8 .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNkpRVX8 .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNkpRVX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNkpRVX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUOgwHCKs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUOgwHCKs::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUOgwHCKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUOgwHCKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUOgwHCKs .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container {
    padding: 0 22px;
  }
}
.cid-ujUOgwHCKs .row {
  position: relative;
  z-index: 1;
}
.cid-ujUOgwHCKs .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUOgwHCKs .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUOgwHCKs .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUOgwHCKs .mbr-section-title {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-text {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUOgwHCKs .list {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-desc {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact,
.cid-ujUOgwHCKs .item-contact {
  color: #ffffff;
}
.cid-ujV3UqWKYB.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3UqWKYB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3UqWKYB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3UqWKYB .modal-content,
.cid-ujV3UqWKYB .modal-dialog {
  height: auto;
}
.cid-ujV3UqWKYB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3UqWKYB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3UqWKYB .form-wrapper .mbr-form .form-group,
  .cid-ujV3UqWKYB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3UqWKYB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3UqWKYB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3UqWKYB .mbr-text {
  text-align: center;
}
.cid-ujV3UqWKYB .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3UqWKYB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3UqWKYB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3UqWKYB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3UqWKYB .modal-open {
  overflow: hidden;
}
.cid-ujV3UqWKYB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3UqWKYB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3UqWKYB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3UqWKYB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3UqWKYB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3UqWKYB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3UqWKYB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3UqWKYB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3UqWKYB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3UqWKYB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3UqWKYB .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3UqWKYB .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3UqWKYB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3UqWKYB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWKYB .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3UqWKYB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3UqWKYB .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3UqWKYB .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3UqWKYB .modal-header .close:focus {
  outline: none;
}
.cid-ujV3UqWKYB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3UqWKYB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3UqWKYB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWKYB .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3UqWKYB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3UqWKYB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWKYB .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3UqWKYB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3UqWKYB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3UqWKYB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3UqWKYB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3UqWKYB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3UqWKYB .modal-lg,
  .cid-ujV3UqWKYB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3UqWKYB .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3UqWKYB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3UqWKYB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3UqWKYB .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3UqWKYB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3UqWKYB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3UqWKYB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3UqWKYB .mbr-section-btn {
  margin: 0;
}
.cid-ujV3UqWKYB .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUTlrTG2c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUTlrTG2c nav.navbar {
  position: fixed;
}
.cid-ujUTlrTG2c .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-ujUTlrTG2c .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUTlrTG2c .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUTlrTG2c .dropdown-item:hover,
.cid-ujUTlrTG2c .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUTlrTG2c .dropdown-item:hover span {
  color: white;
}
.cid-ujUTlrTG2c .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUTlrTG2c .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUTlrTG2c .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUTlrTG2c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUTlrTG2c .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUTlrTG2c .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUTlrTG2c .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUTlrTG2c .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUTlrTG2c .dropdown-menu,
.cid-ujUTlrTG2c .navbar.opened {
  background: #000000 !important;
}
.cid-ujUTlrTG2c .nav-item:focus,
.cid-ujUTlrTG2c .nav-link:focus {
  outline: none;
}
.cid-ujUTlrTG2c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUTlrTG2c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUTlrTG2c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUTlrTG2c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUTlrTG2c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUTlrTG2c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUTlrTG2c .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUTlrTG2c .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUTlrTG2c .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUTlrTG2c .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUTlrTG2c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUTlrTG2c .navbar.collapsed {
  justify-content: center;
}
.cid-ujUTlrTG2c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUTlrTG2c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUTlrTG2c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUTlrTG2c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUTlrTG2c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUTlrTG2c .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-ujUTlrTG2c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUTlrTG2c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUTlrTG2c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUTlrTG2c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUTlrTG2c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUTlrTG2c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUTlrTG2c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUTlrTG2c .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-ujUTlrTG2c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUTlrTG2c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUTlrTG2c .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUTlrTG2c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUTlrTG2c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUTlrTG2c .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUTlrTG2c .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUTlrTG2c .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUTlrTG2c .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUTlrTG2c .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUTlrTG2c .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-ujUTlrTG2c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUTlrTG2c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUTlrTG2c .dropdown-item.active,
.cid-ujUTlrTG2c .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUTlrTG2c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUTlrTG2c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUTlrTG2c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUTlrTG2c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUTlrTG2c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUTlrTG2c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUTlrTG2c ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUTlrTG2c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUTlrTG2c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUTlrTG2c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUTlrTG2c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUTlrTG2c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUTlrTG2c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUTlrTG2c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUTlrTG2c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUTlrTG2c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUTlrTG2c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUTlrTG2c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUTlrTG2c .navbar-dropdown {
  position: fixed;
}
.cid-ujUTlrTG2c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUTlrTG2c .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUTlrTG2c .navbar {
    height: 70px;
  }
  .cid-ujUTlrTG2c .navbar.opened {
    height: auto;
  }
  .cid-ujUTlrTG2c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujUTlrtVM3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUTlrtVM3 .mbr-section-subtitle,
.cid-ujUTlrtVM3 .caption-text {
  color: #8d97ad;
}
.cid-ujUTlrtVM3 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUTlrtVM3 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUTlrtVM3 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUTlrtVM3 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUTlsoNr0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUTlsoNr0 .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUTlsoNr0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUTlsoNr0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUTlsOMTw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUTlsOMTw .mbr-section-subtitle,
.cid-ujUTlsOMTw .caption-text {
  color: #8d97ad;
}
.cid-ujUTlsOMTw .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUTlsOMTw .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUTlsOMTw .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUTlsOMTw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUTltaYHe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUTltaYHe .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUTltaYHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUTltaYHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUTltAn4I {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUTltAn4I .mbr-section-subtitle,
.cid-ujUTltAn4I .caption-text {
  color: #8d97ad;
}
.cid-ujUTltAn4I .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUTltAn4I .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUTltAn4I .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUTltAn4I .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUTltUZIB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUTltUZIB .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUTltUZIB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUTltUZIB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUTluiHu2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUTluiHu2 .mbr-section-subtitle,
.cid-ujUTluiHu2 .caption-text {
  color: #8d97ad;
}
.cid-ujUTluiHu2 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUTluiHu2 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUTluiHu2 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUTluiHu2 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUTluCUAJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUTluCUAJ .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUTluCUAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUTluCUAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUUhlCnFD {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUUhlCnFD .mbr-section-subtitle,
.cid-ujUUhlCnFD .caption-text {
  color: #8d97ad;
}
.cid-ujUUhlCnFD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUUhlCnFD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUUhlCnFD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUUhlCnFD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUUjMdLDA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUUjMdLDA .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUUjMdLDA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUUjMdLDA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNo9fPZM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNo9fPZM .mbr-overlay {
  background: #efefef;
}
.cid-uHMNo9fPZM .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNo9fPZM .client-name {
  color: #8d97ad;
}
.cid-uHMNo9fPZM .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNo9fPZM .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNo9fPZM .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNo9fPZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNo9fPZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUTlvhFSC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUTlvhFSC::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUTlvhFSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUTlvhFSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUTlvhFSC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUTlvhFSC .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .container {
    padding: 0 22px;
  }
}
.cid-ujUTlvhFSC .row {
  position: relative;
  z-index: 1;
}
.cid-ujUTlvhFSC .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUTlvhFSC .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUTlvhFSC .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUTlvhFSC .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUTlvhFSC .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUTlvhFSC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUTlvhFSC .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUTlvhFSC .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUTlvhFSC .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap:hover,
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUTlvhFSC .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUTlvhFSC .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUTlvhFSC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUTlvhFSC .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUTlvhFSC .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUTlvhFSC .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUTlvhFSC .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUTlvhFSC .mbr-section-title {
  color: #ffffff;
}
.cid-ujUTlvhFSC .mbr-text {
  color: #ffffff;
}
.cid-ujUTlvhFSC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUTlvhFSC .list {
  color: #ffffff;
}
.cid-ujUTlvhFSC .mbr-contact {
  color: #ffffff;
}
.cid-ujUTlvhFSC .mbr-desc {
  color: #ffffff;
}
.cid-ujUTlvhFSC .mbr-contact,
.cid-ujUTlvhFSC .item-contact {
  color: #ffffff;
}
.cid-ujV3UqWuHG.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3UqWuHG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3UqWuHG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3UqWuHG .modal-content,
.cid-ujV3UqWuHG .modal-dialog {
  height: auto;
}
.cid-ujV3UqWuHG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3UqWuHG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3UqWuHG .form-wrapper .mbr-form .form-group,
  .cid-ujV3UqWuHG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3UqWuHG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3UqWuHG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3UqWuHG .mbr-text {
  text-align: center;
}
.cid-ujV3UqWuHG .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3UqWuHG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3UqWuHG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3UqWuHG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3UqWuHG .modal-open {
  overflow: hidden;
}
.cid-ujV3UqWuHG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3UqWuHG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3UqWuHG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3UqWuHG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3UqWuHG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3UqWuHG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3UqWuHG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3UqWuHG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3UqWuHG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3UqWuHG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3UqWuHG .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3UqWuHG .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3UqWuHG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3UqWuHG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWuHG .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3UqWuHG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3UqWuHG .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3UqWuHG .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3UqWuHG .modal-header .close:focus {
  outline: none;
}
.cid-ujV3UqWuHG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3UqWuHG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3UqWuHG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWuHG .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3UqWuHG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3UqWuHG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqWuHG .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3UqWuHG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3UqWuHG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3UqWuHG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3UqWuHG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3UqWuHG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3UqWuHG .modal-lg,
  .cid-ujV3UqWuHG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3UqWuHG .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3UqWuHG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3UqWuHG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3UqWuHG .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3UqWuHG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3UqWuHG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3UqWuHG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3UqWuHG .mbr-section-btn {
  margin: 0;
}
.cid-ujV3UqWuHG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqhB8tFx8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqhB8tFx8 nav.navbar {
  position: fixed;
}
.cid-uFqhB8tFx8 .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-uFqhB8tFx8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqhB8tFx8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqhB8tFx8 .dropdown-item:hover,
.cid-uFqhB8tFx8 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqhB8tFx8 .dropdown-item:hover span {
  color: white;
}
.cid-uFqhB8tFx8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqhB8tFx8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqhB8tFx8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqhB8tFx8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqhB8tFx8 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqhB8tFx8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqhB8tFx8 .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqhB8tFx8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqhB8tFx8 .dropdown-menu,
.cid-uFqhB8tFx8 .navbar.opened {
  background: #000000 !important;
}
.cid-uFqhB8tFx8 .nav-item:focus,
.cid-uFqhB8tFx8 .nav-link:focus {
  outline: none;
}
.cid-uFqhB8tFx8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqhB8tFx8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqhB8tFx8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqhB8tFx8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqhB8tFx8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqhB8tFx8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqhB8tFx8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqhB8tFx8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqhB8tFx8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqhB8tFx8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqhB8tFx8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqhB8tFx8 .navbar.collapsed {
  justify-content: center;
}
.cid-uFqhB8tFx8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqhB8tFx8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqhB8tFx8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqhB8tFx8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqhB8tFx8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqhB8tFx8 .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-uFqhB8tFx8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqhB8tFx8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqhB8tFx8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqhB8tFx8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqhB8tFx8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqhB8tFx8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqhB8tFx8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqhB8tFx8 .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-uFqhB8tFx8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqhB8tFx8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqhB8tFx8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqhB8tFx8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqhB8tFx8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqhB8tFx8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqhB8tFx8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqhB8tFx8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqhB8tFx8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqhB8tFx8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqhB8tFx8 .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-uFqhB8tFx8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqhB8tFx8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqhB8tFx8 .dropdown-item.active,
.cid-uFqhB8tFx8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqhB8tFx8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqhB8tFx8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqhB8tFx8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqhB8tFx8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqhB8tFx8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqhB8tFx8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqhB8tFx8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqhB8tFx8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqhB8tFx8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqhB8tFx8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqhB8tFx8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqhB8tFx8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqhB8tFx8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqhB8tFx8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqhB8tFx8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqhB8tFx8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqhB8tFx8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqhB8tFx8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqhB8tFx8 .navbar-dropdown {
  position: fixed;
}
.cid-uFqhB8tFx8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqhB8tFx8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqhB8tFx8 .navbar {
    height: 70px;
  }
  .cid-uFqhB8tFx8 .navbar.opened {
    height: auto;
  }
  .cid-uFqhB8tFx8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqhB93VUJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqhB93VUJ .mbr-section-subtitle,
.cid-uFqhB93VUJ .caption-text {
  color: #8d97ad;
}
.cid-uFqhB93VUJ .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqhB93VUJ .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqhB93VUJ .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqhB93VUJ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqhBa4bXQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqhBa4bXQ .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqhBa4bXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqhBa4bXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMMyFQiiZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMMyFQiiZ .mbr-overlay {
  background: #efefef;
}
.cid-uHMMyFQiiZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMMyFQiiZ .client-name {
  color: #8d97ad;
}
.cid-uHMMyFQiiZ .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMMyFQiiZ .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMMyFQiiZ .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMMyFQiiZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMMyFQiiZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqhBbi07T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqhBbi07T::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqhBbi07T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqhBbi07T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqhBbi07T .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqhBbi07T .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .container {
    padding: 0 22px;
  }
}
.cid-uFqhBbi07T .row {
  position: relative;
  z-index: 1;
}
.cid-uFqhBbi07T .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqhBbi07T .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqhBbi07T .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqhBbi07T .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqhBbi07T .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqhBbi07T .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqhBbi07T .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqhBbi07T .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqhBbi07T .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap:hover,
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqhBbi07T .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqhBbi07T .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqhBbi07T .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqhBbi07T .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqhBbi07T .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqhBbi07T .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqhBbi07T .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqhBbi07T .mbr-section-title {
  color: #ffffff;
}
.cid-uFqhBbi07T .mbr-text {
  color: #ffffff;
}
.cid-uFqhBbi07T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqhBbi07T .list {
  color: #ffffff;
}
.cid-uFqhBbi07T .mbr-contact {
  color: #ffffff;
}
.cid-uFqhBbi07T .mbr-desc {
  color: #ffffff;
}
.cid-uFqhBbi07T .mbr-contact,
.cid-uFqhBbi07T .item-contact {
  color: #ffffff;
}
.cid-uFqhBd3c9W.popup-builder {
  background-color: #ffffff;
}
.cid-uFqhBd3c9W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqhBd3c9W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqhBd3c9W .modal-content,
.cid-uFqhBd3c9W .modal-dialog {
  height: auto;
}
.cid-uFqhBd3c9W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqhBd3c9W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqhBd3c9W .form-wrapper .mbr-form .form-group,
  .cid-uFqhBd3c9W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqhBd3c9W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqhBd3c9W .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqhBd3c9W .mbr-text {
  text-align: center;
}
.cid-uFqhBd3c9W .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqhBd3c9W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqhBd3c9W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqhBd3c9W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqhBd3c9W .modal-open {
  overflow: hidden;
}
.cid-uFqhBd3c9W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqhBd3c9W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqhBd3c9W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqhBd3c9W .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqhBd3c9W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqhBd3c9W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqhBd3c9W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqhBd3c9W .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqhBd3c9W .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqhBd3c9W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqhBd3c9W .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqhBd3c9W .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqhBd3c9W .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqhBd3c9W .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqhBd3c9W .modal-header {
    padding: 1rem;
  }
}
.cid-uFqhBd3c9W .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqhBd3c9W .modal-header .close svg {
  fill: #353535;
}
.cid-uFqhBd3c9W .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqhBd3c9W .modal-header .close:focus {
  outline: none;
}
.cid-uFqhBd3c9W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqhBd3c9W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqhBd3c9W .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqhBd3c9W .modal-body {
    padding: 1rem;
  }
}
.cid-uFqhBd3c9W .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqhBd3c9W .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqhBd3c9W .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqhBd3c9W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqhBd3c9W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqhBd3c9W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqhBd3c9W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqhBd3c9W .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqhBd3c9W .modal-lg,
  .cid-uFqhBd3c9W .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqhBd3c9W .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqhBd3c9W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqhBd3c9W .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqhBd3c9W .form-group {
  margin-bottom: 1rem;
}
.cid-uFqhBd3c9W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqhBd3c9W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqhBd3c9W .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqhBd3c9W .mbr-section-btn {
  margin: 0;
}
.cid-uFqhBd3c9W .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqneO5SXv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqneO5SXv nav.navbar {
  position: fixed;
}
.cid-uFqneO5SXv .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-uFqneO5SXv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqneO5SXv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqneO5SXv .dropdown-item:hover,
.cid-uFqneO5SXv .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqneO5SXv .dropdown-item:hover span {
  color: white;
}
.cid-uFqneO5SXv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqneO5SXv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqneO5SXv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqneO5SXv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqneO5SXv .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqneO5SXv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqneO5SXv .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqneO5SXv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqneO5SXv .dropdown-menu,
.cid-uFqneO5SXv .navbar.opened {
  background: #000000 !important;
}
.cid-uFqneO5SXv .nav-item:focus,
.cid-uFqneO5SXv .nav-link:focus {
  outline: none;
}
.cid-uFqneO5SXv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqneO5SXv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqneO5SXv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqneO5SXv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqneO5SXv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqneO5SXv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqneO5SXv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqneO5SXv .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqneO5SXv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqneO5SXv .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqneO5SXv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqneO5SXv .navbar.collapsed {
  justify-content: center;
}
.cid-uFqneO5SXv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqneO5SXv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqneO5SXv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqneO5SXv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqneO5SXv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqneO5SXv .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-uFqneO5SXv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqneO5SXv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqneO5SXv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqneO5SXv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqneO5SXv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqneO5SXv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqneO5SXv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqneO5SXv .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-uFqneO5SXv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqneO5SXv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqneO5SXv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqneO5SXv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqneO5SXv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqneO5SXv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqneO5SXv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqneO5SXv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqneO5SXv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqneO5SXv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqneO5SXv .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-uFqneO5SXv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqneO5SXv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqneO5SXv .dropdown-item.active,
.cid-uFqneO5SXv .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqneO5SXv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqneO5SXv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqneO5SXv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqneO5SXv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqneO5SXv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqneO5SXv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqneO5SXv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqneO5SXv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqneO5SXv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqneO5SXv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqneO5SXv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqneO5SXv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqneO5SXv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqneO5SXv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqneO5SXv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqneO5SXv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqneO5SXv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqneO5SXv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqneO5SXv .navbar-dropdown {
  position: fixed;
}
.cid-uFqneO5SXv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqneO5SXv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqneO5SXv .navbar {
    height: 70px;
  }
  .cid-uFqneO5SXv .navbar.opened {
    height: auto;
  }
  .cid-uFqneO5SXv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqneOH6bH {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqneOH6bH .mbr-section-subtitle,
.cid-uFqneOH6bH .caption-text {
  color: #8d97ad;
}
.cid-uFqneOH6bH .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqneOH6bH .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqneOH6bH .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqneOH6bH .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqnePsv8F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqnePsv8F .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqnePsv8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqnePsv8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMMGWmV0a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMMGWmV0a .mbr-overlay {
  background: #efefef;
}
.cid-uHMMGWmV0a .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMMGWmV0a .client-name {
  color: #8d97ad;
}
.cid-uHMMGWmV0a .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMMGWmV0a .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMMGWmV0a .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMMGWmV0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMMGWmV0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqneQqV0u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqneQqV0u::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqneQqV0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqneQqV0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqneQqV0u .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqneQqV0u .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .container {
    padding: 0 22px;
  }
}
.cid-uFqneQqV0u .row {
  position: relative;
  z-index: 1;
}
.cid-uFqneQqV0u .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqneQqV0u .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqneQqV0u .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqneQqV0u .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqneQqV0u .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqneQqV0u .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqneQqV0u .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqneQqV0u .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqneQqV0u .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap:hover,
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqneQqV0u .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqneQqV0u .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqneQqV0u .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqneQqV0u .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqneQqV0u .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqneQqV0u .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqneQqV0u .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqneQqV0u .mbr-section-title {
  color: #ffffff;
}
.cid-uFqneQqV0u .mbr-text {
  color: #ffffff;
}
.cid-uFqneQqV0u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqneQqV0u .list {
  color: #ffffff;
}
.cid-uFqneQqV0u .mbr-contact {
  color: #ffffff;
}
.cid-uFqneQqV0u .mbr-desc {
  color: #ffffff;
}
.cid-uFqneQqV0u .mbr-contact,
.cid-uFqneQqV0u .item-contact {
  color: #ffffff;
}
.cid-uFqneSyxcf.popup-builder {
  background-color: #ffffff;
}
.cid-uFqneSyxcf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqneSyxcf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqneSyxcf .modal-content,
.cid-uFqneSyxcf .modal-dialog {
  height: auto;
}
.cid-uFqneSyxcf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqneSyxcf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqneSyxcf .form-wrapper .mbr-form .form-group,
  .cid-uFqneSyxcf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqneSyxcf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqneSyxcf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqneSyxcf .mbr-text {
  text-align: center;
}
.cid-uFqneSyxcf .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqneSyxcf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqneSyxcf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqneSyxcf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqneSyxcf .modal-open {
  overflow: hidden;
}
.cid-uFqneSyxcf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqneSyxcf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqneSyxcf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqneSyxcf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqneSyxcf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqneSyxcf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqneSyxcf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqneSyxcf .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqneSyxcf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqneSyxcf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqneSyxcf .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqneSyxcf .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqneSyxcf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqneSyxcf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqneSyxcf .modal-header {
    padding: 1rem;
  }
}
.cid-uFqneSyxcf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqneSyxcf .modal-header .close svg {
  fill: #353535;
}
.cid-uFqneSyxcf .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqneSyxcf .modal-header .close:focus {
  outline: none;
}
.cid-uFqneSyxcf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqneSyxcf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqneSyxcf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqneSyxcf .modal-body {
    padding: 1rem;
  }
}
.cid-uFqneSyxcf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqneSyxcf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqneSyxcf .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqneSyxcf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqneSyxcf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqneSyxcf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqneSyxcf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqneSyxcf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqneSyxcf .modal-lg,
  .cid-uFqneSyxcf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqneSyxcf .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqneSyxcf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqneSyxcf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqneSyxcf .form-group {
  margin-bottom: 1rem;
}
.cid-uFqneSyxcf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqneSyxcf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqneSyxcf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqneSyxcf .mbr-section-btn {
  margin: 0;
}
.cid-uFqneSyxcf .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqpmqnS7E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqpmqnS7E nav.navbar {
  position: fixed;
}
.cid-uFqpmqnS7E .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-uFqpmqnS7E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqpmqnS7E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqpmqnS7E .dropdown-item:hover,
.cid-uFqpmqnS7E .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqpmqnS7E .dropdown-item:hover span {
  color: white;
}
.cid-uFqpmqnS7E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqpmqnS7E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqpmqnS7E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqpmqnS7E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqpmqnS7E .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqpmqnS7E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqpmqnS7E .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqpmqnS7E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqpmqnS7E .dropdown-menu,
.cid-uFqpmqnS7E .navbar.opened {
  background: #000000 !important;
}
.cid-uFqpmqnS7E .nav-item:focus,
.cid-uFqpmqnS7E .nav-link:focus {
  outline: none;
}
.cid-uFqpmqnS7E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqpmqnS7E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqpmqnS7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqpmqnS7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqpmqnS7E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqpmqnS7E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqpmqnS7E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqpmqnS7E .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqpmqnS7E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqpmqnS7E .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqpmqnS7E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqpmqnS7E .navbar.collapsed {
  justify-content: center;
}
.cid-uFqpmqnS7E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqpmqnS7E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqpmqnS7E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqpmqnS7E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqpmqnS7E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqpmqnS7E .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-uFqpmqnS7E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqpmqnS7E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqpmqnS7E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqpmqnS7E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqpmqnS7E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqpmqnS7E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqpmqnS7E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqpmqnS7E .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-uFqpmqnS7E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqpmqnS7E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqpmqnS7E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqpmqnS7E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqpmqnS7E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqpmqnS7E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqpmqnS7E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqpmqnS7E .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqpmqnS7E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqpmqnS7E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqpmqnS7E .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-uFqpmqnS7E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqpmqnS7E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqpmqnS7E .dropdown-item.active,
.cid-uFqpmqnS7E .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqpmqnS7E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqpmqnS7E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqpmqnS7E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqpmqnS7E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqpmqnS7E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqpmqnS7E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqpmqnS7E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqpmqnS7E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqpmqnS7E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqpmqnS7E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqpmqnS7E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqpmqnS7E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqpmqnS7E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqpmqnS7E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqpmqnS7E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqpmqnS7E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqpmqnS7E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqpmqnS7E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqpmqnS7E .navbar-dropdown {
  position: fixed;
}
.cid-uFqpmqnS7E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqpmqnS7E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqpmqnS7E .navbar {
    height: 70px;
  }
  .cid-uFqpmqnS7E .navbar.opened {
    height: auto;
  }
  .cid-uFqpmqnS7E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqpmqYU7V {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqpmqYU7V .mbr-section-subtitle,
.cid-uFqpmqYU7V .caption-text {
  color: #8d97ad;
}
.cid-uFqpmqYU7V .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqpmqYU7V .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqpmqYU7V .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqpmqYU7V .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqpmrVvAP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqpmrVvAP .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqpmrVvAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqpmrVvAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMMM1B39w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMMM1B39w .mbr-overlay {
  background: #efefef;
}
.cid-uHMMM1B39w .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMMM1B39w .client-name {
  color: #8d97ad;
}
.cid-uHMMM1B39w .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMMM1B39w .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMMM1B39w .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMMM1B39w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMMM1B39w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqpmt4T5x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqpmt4T5x::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqpmt4T5x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqpmt4T5x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqpmt4T5x .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqpmt4T5x .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .container {
    padding: 0 22px;
  }
}
.cid-uFqpmt4T5x .row {
  position: relative;
  z-index: 1;
}
.cid-uFqpmt4T5x .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqpmt4T5x .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqpmt4T5x .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqpmt4T5x .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqpmt4T5x .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqpmt4T5x .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqpmt4T5x .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqpmt4T5x .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqpmt4T5x .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap:hover,
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqpmt4T5x .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqpmt4T5x .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqpmt4T5x .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqpmt4T5x .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqpmt4T5x .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqpmt4T5x .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqpmt4T5x .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqpmt4T5x .mbr-section-title {
  color: #ffffff;
}
.cid-uFqpmt4T5x .mbr-text {
  color: #ffffff;
}
.cid-uFqpmt4T5x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqpmt4T5x .list {
  color: #ffffff;
}
.cid-uFqpmt4T5x .mbr-contact {
  color: #ffffff;
}
.cid-uFqpmt4T5x .mbr-desc {
  color: #ffffff;
}
.cid-uFqpmt4T5x .mbr-contact,
.cid-uFqpmt4T5x .item-contact {
  color: #ffffff;
}
.cid-uFqpmuDFaI.popup-builder {
  background-color: #ffffff;
}
.cid-uFqpmuDFaI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqpmuDFaI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqpmuDFaI .modal-content,
.cid-uFqpmuDFaI .modal-dialog {
  height: auto;
}
.cid-uFqpmuDFaI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqpmuDFaI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqpmuDFaI .form-wrapper .mbr-form .form-group,
  .cid-uFqpmuDFaI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqpmuDFaI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqpmuDFaI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqpmuDFaI .mbr-text {
  text-align: center;
}
.cid-uFqpmuDFaI .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqpmuDFaI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqpmuDFaI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqpmuDFaI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqpmuDFaI .modal-open {
  overflow: hidden;
}
.cid-uFqpmuDFaI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqpmuDFaI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqpmuDFaI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqpmuDFaI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqpmuDFaI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqpmuDFaI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqpmuDFaI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqpmuDFaI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqpmuDFaI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqpmuDFaI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqpmuDFaI .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqpmuDFaI .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqpmuDFaI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqpmuDFaI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqpmuDFaI .modal-header {
    padding: 1rem;
  }
}
.cid-uFqpmuDFaI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqpmuDFaI .modal-header .close svg {
  fill: #353535;
}
.cid-uFqpmuDFaI .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqpmuDFaI .modal-header .close:focus {
  outline: none;
}
.cid-uFqpmuDFaI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqpmuDFaI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqpmuDFaI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqpmuDFaI .modal-body {
    padding: 1rem;
  }
}
.cid-uFqpmuDFaI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqpmuDFaI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqpmuDFaI .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqpmuDFaI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqpmuDFaI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqpmuDFaI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqpmuDFaI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqpmuDFaI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqpmuDFaI .modal-lg,
  .cid-uFqpmuDFaI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqpmuDFaI .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqpmuDFaI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqpmuDFaI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqpmuDFaI .form-group {
  margin-bottom: 1rem;
}
.cid-uFqpmuDFaI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqpmuDFaI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqpmuDFaI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqpmuDFaI .mbr-section-btn {
  margin: 0;
}
.cid-uFqpmuDFaI .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqvK7hW8K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqvK7hW8K nav.navbar {
  position: fixed;
}
.cid-uFqvK7hW8K .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-uFqvK7hW8K .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqvK7hW8K .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqvK7hW8K .dropdown-item:hover,
.cid-uFqvK7hW8K .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqvK7hW8K .dropdown-item:hover span {
  color: white;
}
.cid-uFqvK7hW8K .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqvK7hW8K .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqvK7hW8K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqvK7hW8K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqvK7hW8K .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqvK7hW8K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqvK7hW8K .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqvK7hW8K .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqvK7hW8K .dropdown-menu,
.cid-uFqvK7hW8K .navbar.opened {
  background: #000000 !important;
}
.cid-uFqvK7hW8K .nav-item:focus,
.cid-uFqvK7hW8K .nav-link:focus {
  outline: none;
}
.cid-uFqvK7hW8K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqvK7hW8K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqvK7hW8K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqvK7hW8K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqvK7hW8K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqvK7hW8K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqvK7hW8K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqvK7hW8K .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqvK7hW8K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqvK7hW8K .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqvK7hW8K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqvK7hW8K .navbar.collapsed {
  justify-content: center;
}
.cid-uFqvK7hW8K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqvK7hW8K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqvK7hW8K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqvK7hW8K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqvK7hW8K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqvK7hW8K .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-uFqvK7hW8K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqvK7hW8K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqvK7hW8K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqvK7hW8K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqvK7hW8K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqvK7hW8K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqvK7hW8K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqvK7hW8K .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-uFqvK7hW8K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqvK7hW8K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqvK7hW8K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqvK7hW8K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqvK7hW8K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqvK7hW8K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqvK7hW8K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqvK7hW8K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqvK7hW8K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqvK7hW8K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqvK7hW8K .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-uFqvK7hW8K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqvK7hW8K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqvK7hW8K .dropdown-item.active,
.cid-uFqvK7hW8K .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqvK7hW8K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqvK7hW8K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqvK7hW8K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqvK7hW8K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqvK7hW8K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqvK7hW8K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqvK7hW8K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqvK7hW8K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqvK7hW8K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqvK7hW8K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqvK7hW8K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqvK7hW8K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqvK7hW8K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqvK7hW8K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqvK7hW8K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqvK7hW8K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqvK7hW8K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqvK7hW8K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqvK7hW8K .navbar-dropdown {
  position: fixed;
}
.cid-uFqvK7hW8K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqvK7hW8K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqvK7hW8K .navbar {
    height: 70px;
  }
  .cid-uFqvK7hW8K .navbar.opened {
    height: auto;
  }
  .cid-uFqvK7hW8K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqvK7YoY4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqvK7YoY4 .mbr-section-subtitle,
.cid-uFqvK7YoY4 .caption-text {
  color: #8d97ad;
}
.cid-uFqvK7YoY4 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqvK7YoY4 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqvK7YoY4 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqvK7YoY4 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqvK8Uutg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqvK8Uutg .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqvK8Uutg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqvK8Uutg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMMR3PjbH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMMR3PjbH .mbr-overlay {
  background: #efefef;
}
.cid-uHMMR3PjbH .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMMR3PjbH .client-name {
  color: #8d97ad;
}
.cid-uHMMR3PjbH .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMMR3PjbH .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMMR3PjbH .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMMR3PjbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMMR3PjbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqvKaiitK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqvKaiitK::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqvKaiitK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqvKaiitK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqvKaiitK .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqvKaiitK .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .container {
    padding: 0 22px;
  }
}
.cid-uFqvKaiitK .row {
  position: relative;
  z-index: 1;
}
.cid-uFqvKaiitK .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqvKaiitK .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqvKaiitK .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqvKaiitK .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqvKaiitK .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqvKaiitK .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqvKaiitK .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqvKaiitK .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqvKaiitK .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap:hover,
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqvKaiitK .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqvKaiitK .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqvKaiitK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqvKaiitK .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqvKaiitK .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqvKaiitK .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqvKaiitK .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqvKaiitK .mbr-section-title {
  color: #ffffff;
}
.cid-uFqvKaiitK .mbr-text {
  color: #ffffff;
}
.cid-uFqvKaiitK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqvKaiitK .list {
  color: #ffffff;
}
.cid-uFqvKaiitK .mbr-contact {
  color: #ffffff;
}
.cid-uFqvKaiitK .mbr-desc {
  color: #ffffff;
}
.cid-uFqvKaiitK .mbr-contact,
.cid-uFqvKaiitK .item-contact {
  color: #ffffff;
}
.cid-uFqvKcgd6L.popup-builder {
  background-color: #ffffff;
}
.cid-uFqvKcgd6L.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqvKcgd6L.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqvKcgd6L .modal-content,
.cid-uFqvKcgd6L .modal-dialog {
  height: auto;
}
.cid-uFqvKcgd6L .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqvKcgd6L .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqvKcgd6L .form-wrapper .mbr-form .form-group,
  .cid-uFqvKcgd6L .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqvKcgd6L .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqvKcgd6L .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqvKcgd6L .mbr-text {
  text-align: center;
}
.cid-uFqvKcgd6L .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqvKcgd6L .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqvKcgd6L .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqvKcgd6L .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqvKcgd6L .modal-open {
  overflow: hidden;
}
.cid-uFqvKcgd6L .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqvKcgd6L .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqvKcgd6L .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqvKcgd6L .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqvKcgd6L .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqvKcgd6L .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqvKcgd6L .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqvKcgd6L .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqvKcgd6L .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqvKcgd6L .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqvKcgd6L .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqvKcgd6L .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqvKcgd6L .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqvKcgd6L .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqvKcgd6L .modal-header {
    padding: 1rem;
  }
}
.cid-uFqvKcgd6L .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqvKcgd6L .modal-header .close svg {
  fill: #353535;
}
.cid-uFqvKcgd6L .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqvKcgd6L .modal-header .close:focus {
  outline: none;
}
.cid-uFqvKcgd6L .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqvKcgd6L .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqvKcgd6L .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqvKcgd6L .modal-body {
    padding: 1rem;
  }
}
.cid-uFqvKcgd6L .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqvKcgd6L .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqvKcgd6L .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqvKcgd6L .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqvKcgd6L .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqvKcgd6L .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqvKcgd6L .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqvKcgd6L .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqvKcgd6L .modal-lg,
  .cid-uFqvKcgd6L .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqvKcgd6L .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqvKcgd6L .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqvKcgd6L .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqvKcgd6L .form-group {
  margin-bottom: 1rem;
}
.cid-uFqvKcgd6L .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqvKcgd6L .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqvKcgd6L .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqvKcgd6L .mbr-section-btn {
  margin: 0;
}
.cid-uFqvKcgd6L .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqxiYFWxO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqxiYFWxO nav.navbar {
  position: fixed;
}
.cid-uFqxiYFWxO .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-uFqxiYFWxO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqxiYFWxO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqxiYFWxO .dropdown-item:hover,
.cid-uFqxiYFWxO .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqxiYFWxO .dropdown-item:hover span {
  color: white;
}
.cid-uFqxiYFWxO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqxiYFWxO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqxiYFWxO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqxiYFWxO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqxiYFWxO .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqxiYFWxO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqxiYFWxO .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqxiYFWxO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqxiYFWxO .dropdown-menu,
.cid-uFqxiYFWxO .navbar.opened {
  background: #000000 !important;
}
.cid-uFqxiYFWxO .nav-item:focus,
.cid-uFqxiYFWxO .nav-link:focus {
  outline: none;
}
.cid-uFqxiYFWxO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqxiYFWxO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqxiYFWxO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqxiYFWxO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqxiYFWxO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqxiYFWxO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqxiYFWxO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqxiYFWxO .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqxiYFWxO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqxiYFWxO .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqxiYFWxO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqxiYFWxO .navbar.collapsed {
  justify-content: center;
}
.cid-uFqxiYFWxO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqxiYFWxO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqxiYFWxO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqxiYFWxO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqxiYFWxO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqxiYFWxO .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-uFqxiYFWxO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqxiYFWxO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqxiYFWxO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqxiYFWxO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqxiYFWxO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqxiYFWxO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqxiYFWxO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqxiYFWxO .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-uFqxiYFWxO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqxiYFWxO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqxiYFWxO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqxiYFWxO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqxiYFWxO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqxiYFWxO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqxiYFWxO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqxiYFWxO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqxiYFWxO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqxiYFWxO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqxiYFWxO .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-uFqxiYFWxO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqxiYFWxO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqxiYFWxO .dropdown-item.active,
.cid-uFqxiYFWxO .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqxiYFWxO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqxiYFWxO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqxiYFWxO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqxiYFWxO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqxiYFWxO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqxiYFWxO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqxiYFWxO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqxiYFWxO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqxiYFWxO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqxiYFWxO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqxiYFWxO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqxiYFWxO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqxiYFWxO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqxiYFWxO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqxiYFWxO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqxiYFWxO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqxiYFWxO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqxiYFWxO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqxiYFWxO .navbar-dropdown {
  position: fixed;
}
.cid-uFqxiYFWxO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqxiYFWxO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqxiYFWxO .navbar {
    height: 70px;
  }
  .cid-uFqxiYFWxO .navbar.opened {
    height: auto;
  }
  .cid-uFqxiYFWxO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqxiZnx6j {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqxiZnx6j .mbr-section-subtitle,
.cid-uFqxiZnx6j .caption-text {
  color: #8d97ad;
}
.cid-uFqxiZnx6j .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqxiZnx6j .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqxiZnx6j .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqxiZnx6j .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqxj08Aqi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqxj08Aqi .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqxj08Aqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqxj08Aqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMMWwcEdM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMMWwcEdM .mbr-overlay {
  background: #efefef;
}
.cid-uHMMWwcEdM .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMMWwcEdM .client-name {
  color: #8d97ad;
}
.cid-uHMMWwcEdM .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMMWwcEdM .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMMWwcEdM .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMMWwcEdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMMWwcEdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqxj1l5r9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqxj1l5r9::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqxj1l5r9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqxj1l5r9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqxj1l5r9 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqxj1l5r9 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .container {
    padding: 0 22px;
  }
}
.cid-uFqxj1l5r9 .row {
  position: relative;
  z-index: 1;
}
.cid-uFqxj1l5r9 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqxj1l5r9 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqxj1l5r9 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqxj1l5r9 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqxj1l5r9 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqxj1l5r9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqxj1l5r9 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqxj1l5r9 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqxj1l5r9 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap:hover,
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqxj1l5r9 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqxj1l5r9 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqxj1l5r9 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqxj1l5r9 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqxj1l5r9 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqxj1l5r9 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqxj1l5r9 .mbr-section-title {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .mbr-text {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .list {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .mbr-contact {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .mbr-desc {
  color: #ffffff;
}
.cid-uFqxj1l5r9 .mbr-contact,
.cid-uFqxj1l5r9 .item-contact {
  color: #ffffff;
}
.cid-uFqxj3oacy.popup-builder {
  background-color: #ffffff;
}
.cid-uFqxj3oacy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqxj3oacy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqxj3oacy .modal-content,
.cid-uFqxj3oacy .modal-dialog {
  height: auto;
}
.cid-uFqxj3oacy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqxj3oacy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqxj3oacy .form-wrapper .mbr-form .form-group,
  .cid-uFqxj3oacy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqxj3oacy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqxj3oacy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqxj3oacy .mbr-text {
  text-align: center;
}
.cid-uFqxj3oacy .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqxj3oacy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqxj3oacy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqxj3oacy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqxj3oacy .modal-open {
  overflow: hidden;
}
.cid-uFqxj3oacy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqxj3oacy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqxj3oacy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqxj3oacy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqxj3oacy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqxj3oacy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqxj3oacy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqxj3oacy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqxj3oacy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqxj3oacy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqxj3oacy .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqxj3oacy .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqxj3oacy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqxj3oacy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqxj3oacy .modal-header {
    padding: 1rem;
  }
}
.cid-uFqxj3oacy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqxj3oacy .modal-header .close svg {
  fill: #353535;
}
.cid-uFqxj3oacy .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqxj3oacy .modal-header .close:focus {
  outline: none;
}
.cid-uFqxj3oacy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqxj3oacy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqxj3oacy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqxj3oacy .modal-body {
    padding: 1rem;
  }
}
.cid-uFqxj3oacy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqxj3oacy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqxj3oacy .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqxj3oacy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqxj3oacy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqxj3oacy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqxj3oacy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqxj3oacy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqxj3oacy .modal-lg,
  .cid-uFqxj3oacy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqxj3oacy .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqxj3oacy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqxj3oacy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqxj3oacy .form-group {
  margin-bottom: 1rem;
}
.cid-uFqxj3oacy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqxj3oacy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqxj3oacy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqxj3oacy .mbr-section-btn {
  margin: 0;
}
.cid-uFqxj3oacy .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUXk6ADD8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUXk6ADD8 nav.navbar {
  position: fixed;
}
.cid-ujUXk6ADD8 .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-ujUXk6ADD8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUXk6ADD8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUXk6ADD8 .dropdown-item:hover,
.cid-ujUXk6ADD8 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUXk6ADD8 .dropdown-item:hover span {
  color: white;
}
.cid-ujUXk6ADD8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUXk6ADD8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUXk6ADD8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUXk6ADD8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUXk6ADD8 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUXk6ADD8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUXk6ADD8 .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUXk6ADD8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUXk6ADD8 .dropdown-menu,
.cid-ujUXk6ADD8 .navbar.opened {
  background: #000000 !important;
}
.cid-ujUXk6ADD8 .nav-item:focus,
.cid-ujUXk6ADD8 .nav-link:focus {
  outline: none;
}
.cid-ujUXk6ADD8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUXk6ADD8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUXk6ADD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUXk6ADD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUXk6ADD8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUXk6ADD8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUXk6ADD8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUXk6ADD8 .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUXk6ADD8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUXk6ADD8 .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUXk6ADD8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUXk6ADD8 .navbar.collapsed {
  justify-content: center;
}
.cid-ujUXk6ADD8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUXk6ADD8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUXk6ADD8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUXk6ADD8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUXk6ADD8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUXk6ADD8 .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-ujUXk6ADD8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUXk6ADD8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUXk6ADD8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUXk6ADD8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUXk6ADD8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUXk6ADD8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUXk6ADD8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUXk6ADD8 .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-ujUXk6ADD8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUXk6ADD8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUXk6ADD8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUXk6ADD8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUXk6ADD8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUXk6ADD8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUXk6ADD8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUXk6ADD8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUXk6ADD8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUXk6ADD8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUXk6ADD8 .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-ujUXk6ADD8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUXk6ADD8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUXk6ADD8 .dropdown-item.active,
.cid-ujUXk6ADD8 .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUXk6ADD8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUXk6ADD8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUXk6ADD8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUXk6ADD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUXk6ADD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUXk6ADD8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUXk6ADD8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUXk6ADD8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUXk6ADD8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUXk6ADD8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUXk6ADD8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUXk6ADD8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUXk6ADD8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUXk6ADD8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUXk6ADD8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUXk6ADD8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUXk6ADD8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUXk6ADD8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUXk6ADD8 .navbar-dropdown {
  position: fixed;
}
.cid-ujUXk6ADD8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUXk6ADD8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUXk6ADD8 .navbar {
    height: 70px;
  }
  .cid-ujUXk6ADD8 .navbar.opened {
    height: auto;
  }
  .cid-ujUXk6ADD8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpLGEy5P3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpLGEy5P3 .mbr-section-subtitle,
.cid-uFpLGEy5P3 .caption-text {
  color: #8d97ad;
}
.cid-uFpLGEy5P3 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpLGEy5P3 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpLGEy5P3 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpLGEy5P3 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpLLFMOdT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpLLFMOdT .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpLLFMOdT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpLLFMOdT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMN7TYkcI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMN7TYkcI .mbr-overlay {
  background: #efefef;
}
.cid-uHMN7TYkcI .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMN7TYkcI .client-name {
  color: #8d97ad;
}
.cid-uHMN7TYkcI .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMN7TYkcI .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMN7TYkcI .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMN7TYkcI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMN7TYkcI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUXkc7tht {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUXkc7tht::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUXkc7tht .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUXkc7tht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUXkc7tht .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUXkc7tht .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .container {
    padding: 0 22px;
  }
}
.cid-ujUXkc7tht .row {
  position: relative;
  z-index: 1;
}
.cid-ujUXkc7tht .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUXkc7tht .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUXkc7tht .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUXkc7tht .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUXkc7tht .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUXkc7tht .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUXkc7tht .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUXkc7tht .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUXkc7tht .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap:hover,
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUXkc7tht .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUXkc7tht .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUXkc7tht .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUXkc7tht .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUXkc7tht .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUXkc7tht .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUXkc7tht .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUXkc7tht .mbr-section-title {
  color: #ffffff;
}
.cid-ujUXkc7tht .mbr-text {
  color: #ffffff;
}
.cid-ujUXkc7tht .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUXkc7tht .list {
  color: #ffffff;
}
.cid-ujUXkc7tht .mbr-contact {
  color: #ffffff;
}
.cid-ujUXkc7tht .mbr-desc {
  color: #ffffff;
}
.cid-ujUXkc7tht .mbr-contact,
.cid-ujUXkc7tht .item-contact {
  color: #ffffff;
}
.cid-ujV3UqX4Bo.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3UqX4Bo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3UqX4Bo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3UqX4Bo .modal-content,
.cid-ujV3UqX4Bo .modal-dialog {
  height: auto;
}
.cid-ujV3UqX4Bo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3UqX4Bo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3UqX4Bo .form-wrapper .mbr-form .form-group,
  .cid-ujV3UqX4Bo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3UqX4Bo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3UqX4Bo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3UqX4Bo .mbr-text {
  text-align: center;
}
.cid-ujV3UqX4Bo .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3UqX4Bo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3UqX4Bo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3UqX4Bo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3UqX4Bo .modal-open {
  overflow: hidden;
}
.cid-ujV3UqX4Bo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3UqX4Bo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3UqX4Bo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3UqX4Bo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3UqX4Bo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3UqX4Bo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3UqX4Bo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3UqX4Bo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3UqX4Bo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3UqX4Bo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3UqX4Bo .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3UqX4Bo .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3UqX4Bo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3UqX4Bo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqX4Bo .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3UqX4Bo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3UqX4Bo .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3UqX4Bo .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3UqX4Bo .modal-header .close:focus {
  outline: none;
}
.cid-ujV3UqX4Bo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3UqX4Bo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3UqX4Bo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqX4Bo .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3UqX4Bo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3UqX4Bo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqX4Bo .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3UqX4Bo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3UqX4Bo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3UqX4Bo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3UqX4Bo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3UqX4Bo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3UqX4Bo .modal-lg,
  .cid-ujV3UqX4Bo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3UqX4Bo .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3UqX4Bo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3UqX4Bo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3UqX4Bo .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3UqX4Bo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3UqX4Bo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3UqX4Bo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3UqX4Bo .mbr-section-btn {
  margin: 0;
}
.cid-ujV3UqX4Bo .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUYiGvCnP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUYiGvCnP nav.navbar {
  position: fixed;
}
.cid-ujUYiGvCnP .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-ujUYiGvCnP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUYiGvCnP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUYiGvCnP .dropdown-item:hover,
.cid-ujUYiGvCnP .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUYiGvCnP .dropdown-item:hover span {
  color: white;
}
.cid-ujUYiGvCnP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUYiGvCnP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUYiGvCnP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUYiGvCnP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUYiGvCnP .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUYiGvCnP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUYiGvCnP .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUYiGvCnP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUYiGvCnP .dropdown-menu,
.cid-ujUYiGvCnP .navbar.opened {
  background: #000000 !important;
}
.cid-ujUYiGvCnP .nav-item:focus,
.cid-ujUYiGvCnP .nav-link:focus {
  outline: none;
}
.cid-ujUYiGvCnP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUYiGvCnP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUYiGvCnP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUYiGvCnP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUYiGvCnP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUYiGvCnP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUYiGvCnP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUYiGvCnP .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUYiGvCnP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUYiGvCnP .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUYiGvCnP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUYiGvCnP .navbar.collapsed {
  justify-content: center;
}
.cid-ujUYiGvCnP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUYiGvCnP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUYiGvCnP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUYiGvCnP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUYiGvCnP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUYiGvCnP .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-ujUYiGvCnP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUYiGvCnP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUYiGvCnP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUYiGvCnP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUYiGvCnP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUYiGvCnP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUYiGvCnP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUYiGvCnP .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-ujUYiGvCnP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUYiGvCnP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUYiGvCnP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUYiGvCnP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUYiGvCnP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUYiGvCnP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUYiGvCnP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUYiGvCnP .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUYiGvCnP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUYiGvCnP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUYiGvCnP .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-ujUYiGvCnP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUYiGvCnP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUYiGvCnP .dropdown-item.active,
.cid-ujUYiGvCnP .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUYiGvCnP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUYiGvCnP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUYiGvCnP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUYiGvCnP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUYiGvCnP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUYiGvCnP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUYiGvCnP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUYiGvCnP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUYiGvCnP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUYiGvCnP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUYiGvCnP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUYiGvCnP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUYiGvCnP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUYiGvCnP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUYiGvCnP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUYiGvCnP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUYiGvCnP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUYiGvCnP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUYiGvCnP .navbar-dropdown {
  position: fixed;
}
.cid-ujUYiGvCnP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUYiGvCnP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUYiGvCnP .navbar {
    height: 70px;
  }
  .cid-ujUYiGvCnP .navbar.opened {
    height: auto;
  }
  .cid-ujUYiGvCnP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujUYiHlh8Y {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUYiHlh8Y .mbr-section-subtitle,
.cid-ujUYiHlh8Y .caption-text {
  color: #8d97ad;
}
.cid-ujUYiHlh8Y .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUYiHlh8Y .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUYiHlh8Y .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUYiHlh8Y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-ujUYiHHk3o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujUYiHHk3o .mbr-section-subtitle {
  color: #000000;
}
.cid-ujUYiHHk3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUYiHHk3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNblqSpS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNblqSpS .mbr-overlay {
  background: #efefef;
}
.cid-uHMNblqSpS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNblqSpS .client-name {
  color: #8d97ad;
}
.cid-uHMNblqSpS .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNblqSpS .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNblqSpS .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNblqSpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNblqSpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUYiI6mYm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUYiI6mYm::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUYiI6mYm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUYiI6mYm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUYiI6mYm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUYiI6mYm .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .container {
    padding: 0 22px;
  }
}
.cid-ujUYiI6mYm .row {
  position: relative;
  z-index: 1;
}
.cid-ujUYiI6mYm .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUYiI6mYm .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUYiI6mYm .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUYiI6mYm .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUYiI6mYm .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUYiI6mYm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUYiI6mYm .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUYiI6mYm .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUYiI6mYm .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap:hover,
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUYiI6mYm .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUYiI6mYm .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUYiI6mYm .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUYiI6mYm .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUYiI6mYm .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUYiI6mYm .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUYiI6mYm .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUYiI6mYm .mbr-section-title {
  color: #ffffff;
}
.cid-ujUYiI6mYm .mbr-text {
  color: #ffffff;
}
.cid-ujUYiI6mYm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUYiI6mYm .list {
  color: #ffffff;
}
.cid-ujUYiI6mYm .mbr-contact {
  color: #ffffff;
}
.cid-ujUYiI6mYm .mbr-desc {
  color: #ffffff;
}
.cid-ujUYiI6mYm .mbr-contact,
.cid-ujUYiI6mYm .item-contact {
  color: #ffffff;
}
.cid-ujV3UqXOdR.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3UqXOdR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3UqXOdR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3UqXOdR .modal-content,
.cid-ujV3UqXOdR .modal-dialog {
  height: auto;
}
.cid-ujV3UqXOdR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3UqXOdR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3UqXOdR .form-wrapper .mbr-form .form-group,
  .cid-ujV3UqXOdR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3UqXOdR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3UqXOdR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3UqXOdR .mbr-text {
  text-align: center;
}
.cid-ujV3UqXOdR .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3UqXOdR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3UqXOdR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3UqXOdR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3UqXOdR .modal-open {
  overflow: hidden;
}
.cid-ujV3UqXOdR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3UqXOdR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3UqXOdR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3UqXOdR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3UqXOdR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3UqXOdR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3UqXOdR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3UqXOdR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3UqXOdR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3UqXOdR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3UqXOdR .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3UqXOdR .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3UqXOdR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3UqXOdR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXOdR .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3UqXOdR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3UqXOdR .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3UqXOdR .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3UqXOdR .modal-header .close:focus {
  outline: none;
}
.cid-ujV3UqXOdR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3UqXOdR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3UqXOdR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXOdR .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3UqXOdR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3UqXOdR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXOdR .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3UqXOdR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3UqXOdR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3UqXOdR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3UqXOdR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3UqXOdR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3UqXOdR .modal-lg,
  .cid-ujV3UqXOdR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3UqXOdR .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3UqXOdR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3UqXOdR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3UqXOdR .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3UqXOdR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3UqXOdR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3UqXOdR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3UqXOdR .mbr-section-btn {
  margin: 0;
}
.cid-ujV3UqXOdR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqfvzHwWO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqfvzHwWO nav.navbar {
  position: fixed;
}
.cid-uFqfvzHwWO .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-uFqfvzHwWO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqfvzHwWO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqfvzHwWO .dropdown-item:hover,
.cid-uFqfvzHwWO .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqfvzHwWO .dropdown-item:hover span {
  color: white;
}
.cid-uFqfvzHwWO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqfvzHwWO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqfvzHwWO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqfvzHwWO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqfvzHwWO .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqfvzHwWO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqfvzHwWO .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqfvzHwWO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqfvzHwWO .dropdown-menu,
.cid-uFqfvzHwWO .navbar.opened {
  background: #000000 !important;
}
.cid-uFqfvzHwWO .nav-item:focus,
.cid-uFqfvzHwWO .nav-link:focus {
  outline: none;
}
.cid-uFqfvzHwWO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqfvzHwWO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqfvzHwWO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqfvzHwWO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqfvzHwWO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqfvzHwWO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqfvzHwWO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqfvzHwWO .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqfvzHwWO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqfvzHwWO .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqfvzHwWO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqfvzHwWO .navbar.collapsed {
  justify-content: center;
}
.cid-uFqfvzHwWO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqfvzHwWO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqfvzHwWO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqfvzHwWO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqfvzHwWO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqfvzHwWO .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-uFqfvzHwWO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqfvzHwWO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqfvzHwWO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqfvzHwWO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqfvzHwWO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqfvzHwWO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqfvzHwWO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqfvzHwWO .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-uFqfvzHwWO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqfvzHwWO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqfvzHwWO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqfvzHwWO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqfvzHwWO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqfvzHwWO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqfvzHwWO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqfvzHwWO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqfvzHwWO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqfvzHwWO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqfvzHwWO .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-uFqfvzHwWO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqfvzHwWO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqfvzHwWO .dropdown-item.active,
.cid-uFqfvzHwWO .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqfvzHwWO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqfvzHwWO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqfvzHwWO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqfvzHwWO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqfvzHwWO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqfvzHwWO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqfvzHwWO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqfvzHwWO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqfvzHwWO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqfvzHwWO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqfvzHwWO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqfvzHwWO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqfvzHwWO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqfvzHwWO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqfvzHwWO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqfvzHwWO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqfvzHwWO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqfvzHwWO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqfvzHwWO .navbar-dropdown {
  position: fixed;
}
.cid-uFqfvzHwWO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqfvzHwWO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqfvzHwWO .navbar {
    height: 70px;
  }
  .cid-uFqfvzHwWO .navbar.opened {
    height: auto;
  }
  .cid-uFqfvzHwWO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqfvABda9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqfvABda9 .mbr-section-subtitle,
.cid-uFqfvABda9 .caption-text {
  color: #8d97ad;
}
.cid-uFqfvABda9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqfvABda9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqfvABda9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqfvABda9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqfvBn7do {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqfvBn7do .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqfvBn7do .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqfvBn7do .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqfvCazVI {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqfvCazVI .mbr-section-subtitle,
.cid-uFqfvCazVI .caption-text {
  color: #8d97ad;
}
.cid-uFqfvCazVI .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqfvCazVI .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqfvCazVI .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqfvCazVI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqfvD1VO7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqfvD1VO7 .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqfvD1VO7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqfvD1VO7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqfvDWrly {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqfvDWrly .mbr-section-subtitle,
.cid-uFqfvDWrly .caption-text {
  color: #8d97ad;
}
.cid-uFqfvDWrly .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqfvDWrly .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqfvDWrly .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqfvDWrly .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqfvEFFmz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqfvEFFmz .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqfvEFFmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqfvEFFmz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNtyLzxV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNtyLzxV .mbr-overlay {
  background: #efefef;
}
.cid-uHMNtyLzxV .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNtyLzxV .client-name {
  color: #8d97ad;
}
.cid-uHMNtyLzxV .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNtyLzxV .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNtyLzxV .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNtyLzxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNtyLzxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqfvIVG98 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqfvIVG98::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqfvIVG98 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqfvIVG98 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqfvIVG98 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqfvIVG98 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .container {
    padding: 0 22px;
  }
}
.cid-uFqfvIVG98 .row {
  position: relative;
  z-index: 1;
}
.cid-uFqfvIVG98 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqfvIVG98 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqfvIVG98 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqfvIVG98 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqfvIVG98 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqfvIVG98 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqfvIVG98 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqfvIVG98 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqfvIVG98 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap:hover,
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqfvIVG98 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqfvIVG98 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqfvIVG98 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqfvIVG98 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqfvIVG98 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqfvIVG98 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqfvIVG98 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqfvIVG98 .mbr-section-title {
  color: #ffffff;
}
.cid-uFqfvIVG98 .mbr-text {
  color: #ffffff;
}
.cid-uFqfvIVG98 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqfvIVG98 .list {
  color: #ffffff;
}
.cid-uFqfvIVG98 .mbr-contact {
  color: #ffffff;
}
.cid-uFqfvIVG98 .mbr-desc {
  color: #ffffff;
}
.cid-uFqfvIVG98 .mbr-contact,
.cid-uFqfvIVG98 .item-contact {
  color: #ffffff;
}
.cid-uFqfvL9xPB.popup-builder {
  background-color: #ffffff;
}
.cid-uFqfvL9xPB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqfvL9xPB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqfvL9xPB .modal-content,
.cid-uFqfvL9xPB .modal-dialog {
  height: auto;
}
.cid-uFqfvL9xPB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqfvL9xPB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqfvL9xPB .form-wrapper .mbr-form .form-group,
  .cid-uFqfvL9xPB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqfvL9xPB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqfvL9xPB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqfvL9xPB .mbr-text {
  text-align: center;
}
.cid-uFqfvL9xPB .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqfvL9xPB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqfvL9xPB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqfvL9xPB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqfvL9xPB .modal-open {
  overflow: hidden;
}
.cid-uFqfvL9xPB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqfvL9xPB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqfvL9xPB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqfvL9xPB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqfvL9xPB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqfvL9xPB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqfvL9xPB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqfvL9xPB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqfvL9xPB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqfvL9xPB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqfvL9xPB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqfvL9xPB .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqfvL9xPB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqfvL9xPB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqfvL9xPB .modal-header {
    padding: 1rem;
  }
}
.cid-uFqfvL9xPB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqfvL9xPB .modal-header .close svg {
  fill: #353535;
}
.cid-uFqfvL9xPB .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqfvL9xPB .modal-header .close:focus {
  outline: none;
}
.cid-uFqfvL9xPB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqfvL9xPB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqfvL9xPB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqfvL9xPB .modal-body {
    padding: 1rem;
  }
}
.cid-uFqfvL9xPB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqfvL9xPB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqfvL9xPB .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqfvL9xPB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqfvL9xPB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqfvL9xPB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqfvL9xPB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqfvL9xPB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqfvL9xPB .modal-lg,
  .cid-uFqfvL9xPB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqfvL9xPB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqfvL9xPB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqfvL9xPB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqfvL9xPB .form-group {
  margin-bottom: 1rem;
}
.cid-uFqfvL9xPB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqfvL9xPB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqfvL9xPB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqfvL9xPB .mbr-section-btn {
  margin: 0;
}
.cid-uFqfvL9xPB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFpWwUjc7R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFpWwUjc7R nav.navbar {
  position: fixed;
}
.cid-uFpWwUjc7R .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-uFpWwUjc7R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFpWwUjc7R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFpWwUjc7R .dropdown-item:hover,
.cid-uFpWwUjc7R .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFpWwUjc7R .dropdown-item:hover span {
  color: white;
}
.cid-uFpWwUjc7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFpWwUjc7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFpWwUjc7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFpWwUjc7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFpWwUjc7R .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFpWwUjc7R .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFpWwUjc7R .container {
    flex-wrap: nowrap;
  }
}
.cid-uFpWwUjc7R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFpWwUjc7R .dropdown-menu,
.cid-uFpWwUjc7R .navbar.opened {
  background: #000000 !important;
}
.cid-uFpWwUjc7R .nav-item:focus,
.cid-uFpWwUjc7R .nav-link:focus {
  outline: none;
}
.cid-uFpWwUjc7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFpWwUjc7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFpWwUjc7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFpWwUjc7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFpWwUjc7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFpWwUjc7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFpWwUjc7R .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFpWwUjc7R .navbar.opened {
  transition: all 0.3s;
}
.cid-uFpWwUjc7R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFpWwUjc7R .navbar .navbar-logo img {
  width: auto;
}
.cid-uFpWwUjc7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFpWwUjc7R .navbar.collapsed {
  justify-content: center;
}
.cid-uFpWwUjc7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFpWwUjc7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFpWwUjc7R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFpWwUjc7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFpWwUjc7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFpWwUjc7R .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-uFpWwUjc7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFpWwUjc7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFpWwUjc7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFpWwUjc7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFpWwUjc7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFpWwUjc7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFpWwUjc7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFpWwUjc7R .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-uFpWwUjc7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFpWwUjc7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFpWwUjc7R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFpWwUjc7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFpWwUjc7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFpWwUjc7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFpWwUjc7R .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFpWwUjc7R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFpWwUjc7R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFpWwUjc7R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFpWwUjc7R .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-uFpWwUjc7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFpWwUjc7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFpWwUjc7R .dropdown-item.active,
.cid-uFpWwUjc7R .dropdown-item:active {
  background-color: transparent;
}
.cid-uFpWwUjc7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFpWwUjc7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFpWwUjc7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFpWwUjc7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFpWwUjc7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFpWwUjc7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFpWwUjc7R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFpWwUjc7R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFpWwUjc7R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFpWwUjc7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFpWwUjc7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFpWwUjc7R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFpWwUjc7R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFpWwUjc7R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFpWwUjc7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpWwUjc7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFpWwUjc7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFpWwUjc7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpWwUjc7R .navbar-dropdown {
  position: fixed;
}
.cid-uFpWwUjc7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFpWwUjc7R .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFpWwUjc7R .navbar {
    height: 70px;
  }
  .cid-uFpWwUjc7R .navbar.opened {
    height: auto;
  }
  .cid-uFpWwUjc7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpWwUQxWK {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpWwUQxWK .mbr-section-subtitle,
.cid-uFpWwUQxWK .caption-text {
  color: #8d97ad;
}
.cid-uFpWwUQxWK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpWwUQxWK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpWwUQxWK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpWwUQxWK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpWwVxat1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpWwVxat1 .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpWwVxat1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWwVxat1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWwWf2GF {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpWwWf2GF .mbr-section-subtitle,
.cid-uFpWwWf2GF .caption-text {
  color: #8d97ad;
}
.cid-uFpWwWf2GF .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpWwWf2GF .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpWwWf2GF .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpWwWf2GF .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpWwX65Uq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpWwX65Uq .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpWwX65Uq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWwX65Uq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWwY7Y3U {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpWwY7Y3U .mbr-section-subtitle,
.cid-uFpWwY7Y3U .caption-text {
  color: #8d97ad;
}
.cid-uFpWwY7Y3U .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpWwY7Y3U .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpWwY7Y3U .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpWwY7Y3U .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpWwZ2UsI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpWwZ2UsI .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpWwZ2UsI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWwZ2UsI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWwZQ5JO {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpWwZQ5JO .mbr-section-subtitle,
.cid-uFpWwZQ5JO .caption-text {
  color: #8d97ad;
}
.cid-uFpWwZQ5JO .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpWwZQ5JO .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpWwZQ5JO .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpWwZQ5JO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpWx0I8RH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpWx0I8RH .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpWx0I8RH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWx0I8RH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNxXUaDf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNxXUaDf .mbr-overlay {
  background: #efefef;
}
.cid-uHMNxXUaDf .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNxXUaDf .client-name {
  color: #8d97ad;
}
.cid-uHMNxXUaDf .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNxXUaDf .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNxXUaDf .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNxXUaDf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNxXUaDf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWx3vzvU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFpWx3vzvU::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFpWx3vzvU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWx3vzvU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWx3vzvU .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFpWx3vzvU .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .container {
    padding: 0 22px;
  }
}
.cid-uFpWx3vzvU .row {
  position: relative;
  z-index: 1;
}
.cid-uFpWx3vzvU .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFpWx3vzvU .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFpWx3vzvU .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFpWx3vzvU .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpWx3vzvU .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFpWx3vzvU .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFpWx3vzvU .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFpWx3vzvU .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFpWx3vzvU .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap:hover,
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap:hover::before,
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFpWx3vzvU .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpWx3vzvU .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFpWx3vzvU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpWx3vzvU .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFpWx3vzvU .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFpWx3vzvU .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFpWx3vzvU .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFpWx3vzvU .mbr-section-title {
  color: #ffffff;
}
.cid-uFpWx3vzvU .mbr-text {
  color: #ffffff;
}
.cid-uFpWx3vzvU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFpWx3vzvU .list {
  color: #ffffff;
}
.cid-uFpWx3vzvU .mbr-contact {
  color: #ffffff;
}
.cid-uFpWx3vzvU .mbr-desc {
  color: #ffffff;
}
.cid-uFpWx3vzvU .mbr-contact,
.cid-uFpWx3vzvU .item-contact {
  color: #ffffff;
}
.cid-uFpWx5f3Ri.popup-builder {
  background-color: #ffffff;
}
.cid-uFpWx5f3Ri.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFpWx5f3Ri.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFpWx5f3Ri .modal-content,
.cid-uFpWx5f3Ri .modal-dialog {
  height: auto;
}
.cid-uFpWx5f3Ri .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFpWx5f3Ri .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFpWx5f3Ri .form-wrapper .mbr-form .form-group,
  .cid-uFpWx5f3Ri .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFpWx5f3Ri .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFpWx5f3Ri .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFpWx5f3Ri .mbr-text {
  text-align: center;
}
.cid-uFpWx5f3Ri .pt-0 {
  padding-top: 0 !important;
}
.cid-uFpWx5f3Ri .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFpWx5f3Ri .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFpWx5f3Ri .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFpWx5f3Ri .modal-open {
  overflow: hidden;
}
.cid-uFpWx5f3Ri .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFpWx5f3Ri .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFpWx5f3Ri .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFpWx5f3Ri .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFpWx5f3Ri .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFpWx5f3Ri .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFpWx5f3Ri .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFpWx5f3Ri .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFpWx5f3Ri .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFpWx5f3Ri .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFpWx5f3Ri .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFpWx5f3Ri .modal-backdrop.show {
  opacity: .5;
}
.cid-uFpWx5f3Ri .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFpWx5f3Ri .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpWx5f3Ri .modal-header {
    padding: 1rem;
  }
}
.cid-uFpWx5f3Ri .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFpWx5f3Ri .modal-header .close svg {
  fill: #353535;
}
.cid-uFpWx5f3Ri .modal-header .close:hover {
  opacity: 1;
}
.cid-uFpWx5f3Ri .modal-header .close:focus {
  outline: none;
}
.cid-uFpWx5f3Ri .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFpWx5f3Ri .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFpWx5f3Ri .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpWx5f3Ri .modal-body {
    padding: 1rem;
  }
}
.cid-uFpWx5f3Ri .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFpWx5f3Ri .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpWx5f3Ri .modal-footer {
    padding: 1rem;
  }
}
.cid-uFpWx5f3Ri .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFpWx5f3Ri .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFpWx5f3Ri .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFpWx5f3Ri .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFpWx5f3Ri .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFpWx5f3Ri .modal-lg,
  .cid-uFpWx5f3Ri .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFpWx5f3Ri .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFpWx5f3Ri .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFpWx5f3Ri .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFpWx5f3Ri .form-group {
  margin-bottom: 1rem;
}
.cid-uFpWx5f3Ri .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFpWx5f3Ri .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFpWx5f3Ri .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFpWx5f3Ri .mbr-section-btn {
  margin: 0;
}
.cid-uFpWx5f3Ri .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGn2qtCP2X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGn2qtCP2X nav.navbar {
  position: fixed;
}
.cid-uGn2qtCP2X .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-uGn2qtCP2X .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGn2qtCP2X .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGn2qtCP2X .dropdown-item:hover,
.cid-uGn2qtCP2X .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uGn2qtCP2X .dropdown-item:hover span {
  color: white;
}
.cid-uGn2qtCP2X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGn2qtCP2X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGn2qtCP2X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGn2qtCP2X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGn2qtCP2X .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uGn2qtCP2X .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGn2qtCP2X .container {
    flex-wrap: nowrap;
  }
}
.cid-uGn2qtCP2X .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGn2qtCP2X .dropdown-menu,
.cid-uGn2qtCP2X .navbar.opened {
  background: #000000 !important;
}
.cid-uGn2qtCP2X .nav-item:focus,
.cid-uGn2qtCP2X .nav-link:focus {
  outline: none;
}
.cid-uGn2qtCP2X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGn2qtCP2X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGn2qtCP2X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGn2qtCP2X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGn2qtCP2X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGn2qtCP2X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGn2qtCP2X .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uGn2qtCP2X .navbar.opened {
  transition: all 0.3s;
}
.cid-uGn2qtCP2X .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGn2qtCP2X .navbar .navbar-logo img {
  width: auto;
}
.cid-uGn2qtCP2X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGn2qtCP2X .navbar.collapsed {
  justify-content: center;
}
.cid-uGn2qtCP2X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGn2qtCP2X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGn2qtCP2X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uGn2qtCP2X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGn2qtCP2X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGn2qtCP2X .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-uGn2qtCP2X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGn2qtCP2X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGn2qtCP2X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGn2qtCP2X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGn2qtCP2X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGn2qtCP2X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGn2qtCP2X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGn2qtCP2X .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-uGn2qtCP2X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGn2qtCP2X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGn2qtCP2X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGn2qtCP2X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGn2qtCP2X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGn2qtCP2X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGn2qtCP2X .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGn2qtCP2X .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGn2qtCP2X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGn2qtCP2X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGn2qtCP2X .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-uGn2qtCP2X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGn2qtCP2X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGn2qtCP2X .dropdown-item.active,
.cid-uGn2qtCP2X .dropdown-item:active {
  background-color: transparent;
}
.cid-uGn2qtCP2X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGn2qtCP2X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGn2qtCP2X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGn2qtCP2X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGn2qtCP2X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGn2qtCP2X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGn2qtCP2X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGn2qtCP2X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGn2qtCP2X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGn2qtCP2X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uGn2qtCP2X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGn2qtCP2X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGn2qtCP2X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGn2qtCP2X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGn2qtCP2X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGn2qtCP2X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGn2qtCP2X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGn2qtCP2X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGn2qtCP2X .navbar-dropdown {
  position: fixed;
}
.cid-uGn2qtCP2X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGn2qtCP2X .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGn2qtCP2X .navbar {
    height: 70px;
  }
  .cid-uGn2qtCP2X .navbar.opened {
    height: auto;
  }
  .cid-uGn2qtCP2X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGn2qvfaxE {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uGn2qvfaxE .mbr-section-subtitle,
.cid-uGn2qvfaxE .caption-text {
  color: #8d97ad;
}
.cid-uGn2qvfaxE .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uGn2qvfaxE .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uGn2qvfaxE .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uGn2qvfaxE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uGn2qw2WUA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGn2qw2WUA .mbr-section-subtitle {
  color: #000000;
}
.cid-uGn2qw2WUA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn2qw2WUA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn2qyRdSO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uGn2qyRdSO::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uGn2qyRdSO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn2qyRdSO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn2qyRdSO .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uGn2qyRdSO .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .container {
    padding: 0 22px;
  }
}
.cid-uGn2qyRdSO .row {
  position: relative;
  z-index: 1;
}
.cid-uGn2qyRdSO .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uGn2qyRdSO .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGn2qyRdSO .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGn2qyRdSO .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn2qyRdSO .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uGn2qyRdSO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGn2qyRdSO .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uGn2qyRdSO .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uGn2qyRdSO .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap:hover,
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap:hover::before,
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uGn2qyRdSO .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn2qyRdSO .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGn2qyRdSO .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn2qyRdSO .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGn2qyRdSO .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uGn2qyRdSO .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uGn2qyRdSO .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uGn2qyRdSO .mbr-section-title {
  color: #ffffff;
}
.cid-uGn2qyRdSO .mbr-text {
  color: #ffffff;
}
.cid-uGn2qyRdSO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGn2qyRdSO .list {
  color: #ffffff;
}
.cid-uGn2qyRdSO .mbr-contact {
  color: #ffffff;
}
.cid-uGn2qyRdSO .mbr-desc {
  color: #ffffff;
}
.cid-uGn2qyRdSO .mbr-contact,
.cid-uGn2qyRdSO .item-contact {
  color: #ffffff;
}
.cid-uGn2qA8kKc.popup-builder {
  background-color: #ffffff;
}
.cid-uGn2qA8kKc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGn2qA8kKc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGn2qA8kKc .modal-content,
.cid-uGn2qA8kKc .modal-dialog {
  height: auto;
}
.cid-uGn2qA8kKc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGn2qA8kKc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGn2qA8kKc .form-wrapper .mbr-form .form-group,
  .cid-uGn2qA8kKc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGn2qA8kKc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGn2qA8kKc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGn2qA8kKc .mbr-text {
  text-align: center;
}
.cid-uGn2qA8kKc .pt-0 {
  padding-top: 0 !important;
}
.cid-uGn2qA8kKc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGn2qA8kKc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGn2qA8kKc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGn2qA8kKc .modal-open {
  overflow: hidden;
}
.cid-uGn2qA8kKc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGn2qA8kKc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGn2qA8kKc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGn2qA8kKc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGn2qA8kKc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGn2qA8kKc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGn2qA8kKc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGn2qA8kKc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uGn2qA8kKc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGn2qA8kKc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGn2qA8kKc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGn2qA8kKc .modal-backdrop.show {
  opacity: .5;
}
.cid-uGn2qA8kKc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGn2qA8kKc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn2qA8kKc .modal-header {
    padding: 1rem;
  }
}
.cid-uGn2qA8kKc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGn2qA8kKc .modal-header .close svg {
  fill: #353535;
}
.cid-uGn2qA8kKc .modal-header .close:hover {
  opacity: 1;
}
.cid-uGn2qA8kKc .modal-header .close:focus {
  outline: none;
}
.cid-uGn2qA8kKc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uGn2qA8kKc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGn2qA8kKc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn2qA8kKc .modal-body {
    padding: 1rem;
  }
}
.cid-uGn2qA8kKc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGn2qA8kKc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn2qA8kKc .modal-footer {
    padding: 1rem;
  }
}
.cid-uGn2qA8kKc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGn2qA8kKc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGn2qA8kKc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGn2qA8kKc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGn2qA8kKc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGn2qA8kKc .modal-lg,
  .cid-uGn2qA8kKc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGn2qA8kKc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGn2qA8kKc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGn2qA8kKc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGn2qA8kKc .form-group {
  margin-bottom: 1rem;
}
.cid-uGn2qA8kKc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGn2qA8kKc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGn2qA8kKc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGn2qA8kKc .mbr-section-btn {
  margin: 0;
}
.cid-uGn2qA8kKc .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGn63IADIZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGn63IADIZ nav.navbar {
  position: fixed;
}
.cid-uGn63IADIZ .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-uGn63IADIZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGn63IADIZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGn63IADIZ .dropdown-item:hover,
.cid-uGn63IADIZ .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uGn63IADIZ .dropdown-item:hover span {
  color: white;
}
.cid-uGn63IADIZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGn63IADIZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGn63IADIZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGn63IADIZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGn63IADIZ .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uGn63IADIZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGn63IADIZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uGn63IADIZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGn63IADIZ .dropdown-menu,
.cid-uGn63IADIZ .navbar.opened {
  background: #000000 !important;
}
.cid-uGn63IADIZ .nav-item:focus,
.cid-uGn63IADIZ .nav-link:focus {
  outline: none;
}
.cid-uGn63IADIZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGn63IADIZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGn63IADIZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGn63IADIZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGn63IADIZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGn63IADIZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGn63IADIZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uGn63IADIZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uGn63IADIZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGn63IADIZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uGn63IADIZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGn63IADIZ .navbar.collapsed {
  justify-content: center;
}
.cid-uGn63IADIZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGn63IADIZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGn63IADIZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uGn63IADIZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGn63IADIZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGn63IADIZ .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-uGn63IADIZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGn63IADIZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGn63IADIZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGn63IADIZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGn63IADIZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGn63IADIZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGn63IADIZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGn63IADIZ .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-uGn63IADIZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGn63IADIZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGn63IADIZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGn63IADIZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGn63IADIZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGn63IADIZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGn63IADIZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGn63IADIZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGn63IADIZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGn63IADIZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGn63IADIZ .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-uGn63IADIZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGn63IADIZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGn63IADIZ .dropdown-item.active,
.cid-uGn63IADIZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uGn63IADIZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGn63IADIZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGn63IADIZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGn63IADIZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGn63IADIZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGn63IADIZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGn63IADIZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGn63IADIZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGn63IADIZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGn63IADIZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uGn63IADIZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGn63IADIZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGn63IADIZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGn63IADIZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGn63IADIZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGn63IADIZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGn63IADIZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGn63IADIZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGn63IADIZ .navbar-dropdown {
  position: fixed;
}
.cid-uGn63IADIZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGn63IADIZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGn63IADIZ .navbar {
    height: 70px;
  }
  .cid-uGn63IADIZ .navbar.opened {
    height: auto;
  }
  .cid-uGn63IADIZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGn63Je7O6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uGn63Je7O6 .mbr-section-subtitle,
.cid-uGn63Je7O6 .caption-text {
  color: #8d97ad;
}
.cid-uGn63Je7O6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uGn63Je7O6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uGn63Je7O6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uGn63Je7O6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uGn63K2ur8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGn63K2ur8 .mbr-section-subtitle {
  color: #000000;
}
.cid-uGn63K2ur8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn63K2ur8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn63L99gR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uGn63L99gR::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uGn63L99gR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGn63L99gR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGn63L99gR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uGn63L99gR .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .container {
    padding: 0 22px;
  }
}
.cid-uGn63L99gR .row {
  position: relative;
  z-index: 1;
}
.cid-uGn63L99gR .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uGn63L99gR .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGn63L99gR .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGn63L99gR .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn63L99gR .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uGn63L99gR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGn63L99gR .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uGn63L99gR .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uGn63L99gR .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uGn63L99gR .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGn63L99gR .nav-wrapper .list .item-wrap:hover,
.cid-uGn63L99gR .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uGn63L99gR .nav-wrapper .list .item-wrap:hover::before,
.cid-uGn63L99gR .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uGn63L99gR .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn63L99gR .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGn63L99gR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGn63L99gR .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGn63L99gR .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uGn63L99gR .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uGn63L99gR .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uGn63L99gR .mbr-section-title {
  color: #ffffff;
}
.cid-uGn63L99gR .mbr-text {
  color: #ffffff;
}
.cid-uGn63L99gR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGn63L99gR .list {
  color: #ffffff;
}
.cid-uGn63L99gR .mbr-contact {
  color: #ffffff;
}
.cid-uGn63L99gR .mbr-desc {
  color: #ffffff;
}
.cid-uGn63L99gR .mbr-contact,
.cid-uGn63L99gR .item-contact {
  color: #ffffff;
}
.cid-uGn63N1jUN.popup-builder {
  background-color: #ffffff;
}
.cid-uGn63N1jUN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGn63N1jUN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGn63N1jUN .modal-content,
.cid-uGn63N1jUN .modal-dialog {
  height: auto;
}
.cid-uGn63N1jUN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGn63N1jUN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGn63N1jUN .form-wrapper .mbr-form .form-group,
  .cid-uGn63N1jUN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGn63N1jUN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGn63N1jUN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGn63N1jUN .mbr-text {
  text-align: center;
}
.cid-uGn63N1jUN .pt-0 {
  padding-top: 0 !important;
}
.cid-uGn63N1jUN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGn63N1jUN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGn63N1jUN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGn63N1jUN .modal-open {
  overflow: hidden;
}
.cid-uGn63N1jUN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGn63N1jUN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGn63N1jUN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGn63N1jUN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGn63N1jUN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGn63N1jUN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGn63N1jUN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGn63N1jUN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uGn63N1jUN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGn63N1jUN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGn63N1jUN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGn63N1jUN .modal-backdrop.show {
  opacity: .5;
}
.cid-uGn63N1jUN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGn63N1jUN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn63N1jUN .modal-header {
    padding: 1rem;
  }
}
.cid-uGn63N1jUN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGn63N1jUN .modal-header .close svg {
  fill: #353535;
}
.cid-uGn63N1jUN .modal-header .close:hover {
  opacity: 1;
}
.cid-uGn63N1jUN .modal-header .close:focus {
  outline: none;
}
.cid-uGn63N1jUN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uGn63N1jUN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGn63N1jUN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn63N1jUN .modal-body {
    padding: 1rem;
  }
}
.cid-uGn63N1jUN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGn63N1jUN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGn63N1jUN .modal-footer {
    padding: 1rem;
  }
}
.cid-uGn63N1jUN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGn63N1jUN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGn63N1jUN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGn63N1jUN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGn63N1jUN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGn63N1jUN .modal-lg,
  .cid-uGn63N1jUN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGn63N1jUN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGn63N1jUN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGn63N1jUN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGn63N1jUN .form-group {
  margin-bottom: 1rem;
}
.cid-uGn63N1jUN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGn63N1jUN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGn63N1jUN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGn63N1jUN .mbr-section-btn {
  margin: 0;
}
.cid-uGn63N1jUN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGnd5sbFmZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGnd5sbFmZ nav.navbar {
  position: fixed;
}
.cid-uGnd5sbFmZ .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-uGnd5sbFmZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGnd5sbFmZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGnd5sbFmZ .dropdown-item:hover,
.cid-uGnd5sbFmZ .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uGnd5sbFmZ .dropdown-item:hover span {
  color: white;
}
.cid-uGnd5sbFmZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGnd5sbFmZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGnd5sbFmZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGnd5sbFmZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGnd5sbFmZ .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uGnd5sbFmZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGnd5sbFmZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uGnd5sbFmZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGnd5sbFmZ .dropdown-menu,
.cid-uGnd5sbFmZ .navbar.opened {
  background: #000000 !important;
}
.cid-uGnd5sbFmZ .nav-item:focus,
.cid-uGnd5sbFmZ .nav-link:focus {
  outline: none;
}
.cid-uGnd5sbFmZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGnd5sbFmZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGnd5sbFmZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGnd5sbFmZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGnd5sbFmZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGnd5sbFmZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGnd5sbFmZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uGnd5sbFmZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uGnd5sbFmZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGnd5sbFmZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uGnd5sbFmZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGnd5sbFmZ .navbar.collapsed {
  justify-content: center;
}
.cid-uGnd5sbFmZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGnd5sbFmZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGnd5sbFmZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uGnd5sbFmZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGnd5sbFmZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGnd5sbFmZ .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-uGnd5sbFmZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGnd5sbFmZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGnd5sbFmZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGnd5sbFmZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGnd5sbFmZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGnd5sbFmZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGnd5sbFmZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGnd5sbFmZ .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-uGnd5sbFmZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGnd5sbFmZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGnd5sbFmZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGnd5sbFmZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGnd5sbFmZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGnd5sbFmZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGnd5sbFmZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGnd5sbFmZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGnd5sbFmZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGnd5sbFmZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGnd5sbFmZ .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-uGnd5sbFmZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGnd5sbFmZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGnd5sbFmZ .dropdown-item.active,
.cid-uGnd5sbFmZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uGnd5sbFmZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGnd5sbFmZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGnd5sbFmZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGnd5sbFmZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGnd5sbFmZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGnd5sbFmZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGnd5sbFmZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGnd5sbFmZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGnd5sbFmZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGnd5sbFmZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uGnd5sbFmZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGnd5sbFmZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGnd5sbFmZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGnd5sbFmZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGnd5sbFmZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGnd5sbFmZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGnd5sbFmZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGnd5sbFmZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGnd5sbFmZ .navbar-dropdown {
  position: fixed;
}
.cid-uGnd5sbFmZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGnd5sbFmZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGnd5sbFmZ .navbar {
    height: 70px;
  }
  .cid-uGnd5sbFmZ .navbar.opened {
    height: auto;
  }
  .cid-uGnd5sbFmZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGnd5sOhDj {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uGnd5sOhDj .mbr-section-subtitle,
.cid-uGnd5sOhDj .caption-text {
  color: #8d97ad;
}
.cid-uGnd5sOhDj .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uGnd5sOhDj .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uGnd5sOhDj .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uGnd5sOhDj .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uGnd5tFn71 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGnd5tFn71 .mbr-section-subtitle {
  color: #000000;
}
.cid-uGnd5tFn71 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnd5tFn71 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGnd5uTise {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uGnd5uTise::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uGnd5uTise .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnd5uTise .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGnd5uTise .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uGnd5uTise .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .container {
    padding: 0 22px;
  }
}
.cid-uGnd5uTise .row {
  position: relative;
  z-index: 1;
}
.cid-uGnd5uTise .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uGnd5uTise .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGnd5uTise .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uGnd5uTise .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGnd5uTise .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uGnd5uTise .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGnd5uTise .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uGnd5uTise .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uGnd5uTise .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uGnd5uTise .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGnd5uTise .nav-wrapper .list .item-wrap:hover,
.cid-uGnd5uTise .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uGnd5uTise .nav-wrapper .list .item-wrap:hover::before,
.cid-uGnd5uTise .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uGnd5uTise .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGnd5uTise .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uGnd5uTise .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGnd5uTise .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uGnd5uTise .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uGnd5uTise .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uGnd5uTise .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uGnd5uTise .mbr-section-title {
  color: #ffffff;
}
.cid-uGnd5uTise .mbr-text {
  color: #ffffff;
}
.cid-uGnd5uTise .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGnd5uTise .list {
  color: #ffffff;
}
.cid-uGnd5uTise .mbr-contact {
  color: #ffffff;
}
.cid-uGnd5uTise .mbr-desc {
  color: #ffffff;
}
.cid-uGnd5uTise .mbr-contact,
.cid-uGnd5uTise .item-contact {
  color: #ffffff;
}
.cid-uGnd5wMSx4.popup-builder {
  background-color: #ffffff;
}
.cid-uGnd5wMSx4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGnd5wMSx4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGnd5wMSx4 .modal-content,
.cid-uGnd5wMSx4 .modal-dialog {
  height: auto;
}
.cid-uGnd5wMSx4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGnd5wMSx4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGnd5wMSx4 .form-wrapper .mbr-form .form-group,
  .cid-uGnd5wMSx4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGnd5wMSx4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGnd5wMSx4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGnd5wMSx4 .mbr-text {
  text-align: center;
}
.cid-uGnd5wMSx4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uGnd5wMSx4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGnd5wMSx4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGnd5wMSx4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGnd5wMSx4 .modal-open {
  overflow: hidden;
}
.cid-uGnd5wMSx4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGnd5wMSx4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGnd5wMSx4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGnd5wMSx4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGnd5wMSx4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGnd5wMSx4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGnd5wMSx4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGnd5wMSx4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uGnd5wMSx4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGnd5wMSx4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGnd5wMSx4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGnd5wMSx4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uGnd5wMSx4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGnd5wMSx4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGnd5wMSx4 .modal-header {
    padding: 1rem;
  }
}
.cid-uGnd5wMSx4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGnd5wMSx4 .modal-header .close svg {
  fill: #353535;
}
.cid-uGnd5wMSx4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uGnd5wMSx4 .modal-header .close:focus {
  outline: none;
}
.cid-uGnd5wMSx4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uGnd5wMSx4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGnd5wMSx4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGnd5wMSx4 .modal-body {
    padding: 1rem;
  }
}
.cid-uGnd5wMSx4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGnd5wMSx4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGnd5wMSx4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uGnd5wMSx4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGnd5wMSx4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGnd5wMSx4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGnd5wMSx4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGnd5wMSx4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGnd5wMSx4 .modal-lg,
  .cid-uGnd5wMSx4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGnd5wMSx4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGnd5wMSx4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGnd5wMSx4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGnd5wMSx4 .form-group {
  margin-bottom: 1rem;
}
.cid-uGnd5wMSx4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGnd5wMSx4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGnd5wMSx4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGnd5wMSx4 .mbr-section-btn {
  margin: 0;
}
.cid-uGnd5wMSx4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uF8CowzkL3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF8CowzkL3 nav.navbar {
  position: fixed;
}
.cid-uF8CowzkL3 .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-uF8CowzkL3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF8CowzkL3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF8CowzkL3 .dropdown-item:hover,
.cid-uF8CowzkL3 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uF8CowzkL3 .dropdown-item:hover span {
  color: white;
}
.cid-uF8CowzkL3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF8CowzkL3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF8CowzkL3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF8CowzkL3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF8CowzkL3 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uF8CowzkL3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF8CowzkL3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uF8CowzkL3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF8CowzkL3 .dropdown-menu,
.cid-uF8CowzkL3 .navbar.opened {
  background: #000000 !important;
}
.cid-uF8CowzkL3 .nav-item:focus,
.cid-uF8CowzkL3 .nav-link:focus {
  outline: none;
}
.cid-uF8CowzkL3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF8CowzkL3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF8CowzkL3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF8CowzkL3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF8CowzkL3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF8CowzkL3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF8CowzkL3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF8CowzkL3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uF8CowzkL3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF8CowzkL3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uF8CowzkL3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF8CowzkL3 .navbar.collapsed {
  justify-content: center;
}
.cid-uF8CowzkL3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF8CowzkL3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF8CowzkL3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uF8CowzkL3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF8CowzkL3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF8CowzkL3 .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-uF8CowzkL3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF8CowzkL3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF8CowzkL3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF8CowzkL3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF8CowzkL3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF8CowzkL3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF8CowzkL3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF8CowzkL3 .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-uF8CowzkL3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF8CowzkL3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF8CowzkL3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF8CowzkL3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF8CowzkL3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF8CowzkL3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uF8CowzkL3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uF8CowzkL3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF8CowzkL3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF8CowzkL3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF8CowzkL3 .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-uF8CowzkL3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF8CowzkL3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF8CowzkL3 .dropdown-item.active,
.cid-uF8CowzkL3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uF8CowzkL3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF8CowzkL3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF8CowzkL3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF8CowzkL3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF8CowzkL3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF8CowzkL3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF8CowzkL3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF8CowzkL3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF8CowzkL3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF8CowzkL3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uF8CowzkL3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF8CowzkL3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF8CowzkL3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF8CowzkL3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF8CowzkL3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF8CowzkL3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF8CowzkL3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF8CowzkL3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF8CowzkL3 .navbar-dropdown {
  position: fixed;
}
.cid-uF8CowzkL3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF8CowzkL3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF8CowzkL3 .navbar {
    height: 70px;
  }
  .cid-uF8CowzkL3 .navbar.opened {
    height: auto;
  }
  .cid-uF8CowzkL3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uF8CLCFZPJ {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uF8CLCFZPJ .mbr-overlay {
  background: #efefef;
}
.cid-uF8CLCFZPJ .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-uF8CLCFZPJ .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-uF8CLCFZPJ .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uF8CLCFZPJ .mbr-text {
  color: #8d97ad;
}
.cid-uF8CLCFZPJ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uF8CLCFZPJ .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-uF8CLCFZPJ .card-title {
    text-align: center;
  }
  .cid-uF8CLCFZPJ p.mbr-text,
  .cid-uF8CLCFZPJ p.date {
    text-align: center;
  }
}
.cid-uFCHnZzakr {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uFCHnZzakr .mbr-overlay {
  background: #efefef;
}
.cid-uFCHnZzakr .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-uFCHnZzakr .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-uFCHnZzakr .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uFCHnZzakr .mbr-text {
  color: #8d97ad;
}
.cid-uFCHnZzakr .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uFCHnZzakr .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-uFCHnZzakr .card-title {
    text-align: center;
  }
  .cid-uFCHnZzakr p.mbr-text,
  .cid-uFCHnZzakr p.date {
    text-align: center;
  }
}
.cid-uF8CoxphIN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uF8CoxphIN::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uF8CoxphIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8CoxphIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8CoxphIN .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uF8CoxphIN .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .container {
    padding: 0 22px;
  }
}
.cid-uF8CoxphIN .row {
  position: relative;
  z-index: 1;
}
.cid-uF8CoxphIN .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uF8CoxphIN .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uF8CoxphIN .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uF8CoxphIN .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uF8CoxphIN .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uF8CoxphIN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uF8CoxphIN .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uF8CoxphIN .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uF8CoxphIN .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap:hover,
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap:hover::before,
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uF8CoxphIN .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uF8CoxphIN .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uF8CoxphIN .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uF8CoxphIN .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uF8CoxphIN .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uF8CoxphIN .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uF8CoxphIN .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uF8CoxphIN .mbr-section-title {
  color: #ffffff;
}
.cid-uF8CoxphIN .mbr-text {
  color: #ffffff;
}
.cid-uF8CoxphIN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uF8CoxphIN .list {
  color: #ffffff;
}
.cid-uF8CoxphIN .mbr-contact {
  color: #ffffff;
}
.cid-uF8CoxphIN .mbr-desc {
  color: #ffffff;
}
.cid-uF8CoxphIN .mbr-contact,
.cid-uF8CoxphIN .item-contact {
  color: #ffffff;
}
.cid-uF8CoxYHaQ.popup-builder {
  background-color: #ffffff;
}
.cid-uF8CoxYHaQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uF8CoxYHaQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uF8CoxYHaQ .modal-content,
.cid-uF8CoxYHaQ .modal-dialog {
  height: auto;
}
.cid-uF8CoxYHaQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uF8CoxYHaQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uF8CoxYHaQ .form-wrapper .mbr-form .form-group,
  .cid-uF8CoxYHaQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uF8CoxYHaQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uF8CoxYHaQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uF8CoxYHaQ .mbr-text {
  text-align: center;
}
.cid-uF8CoxYHaQ .pt-0 {
  padding-top: 0 !important;
}
.cid-uF8CoxYHaQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uF8CoxYHaQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uF8CoxYHaQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uF8CoxYHaQ .modal-open {
  overflow: hidden;
}
.cid-uF8CoxYHaQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uF8CoxYHaQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uF8CoxYHaQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uF8CoxYHaQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uF8CoxYHaQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uF8CoxYHaQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uF8CoxYHaQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uF8CoxYHaQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uF8CoxYHaQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uF8CoxYHaQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uF8CoxYHaQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uF8CoxYHaQ .modal-backdrop.show {
  opacity: .5;
}
.cid-uF8CoxYHaQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uF8CoxYHaQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8CoxYHaQ .modal-header {
    padding: 1rem;
  }
}
.cid-uF8CoxYHaQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uF8CoxYHaQ .modal-header .close svg {
  fill: #353535;
}
.cid-uF8CoxYHaQ .modal-header .close:hover {
  opacity: 1;
}
.cid-uF8CoxYHaQ .modal-header .close:focus {
  outline: none;
}
.cid-uF8CoxYHaQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uF8CoxYHaQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uF8CoxYHaQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8CoxYHaQ .modal-body {
    padding: 1rem;
  }
}
.cid-uF8CoxYHaQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uF8CoxYHaQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8CoxYHaQ .modal-footer {
    padding: 1rem;
  }
}
.cid-uF8CoxYHaQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uF8CoxYHaQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uF8CoxYHaQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uF8CoxYHaQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uF8CoxYHaQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uF8CoxYHaQ .modal-lg,
  .cid-uF8CoxYHaQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uF8CoxYHaQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uF8CoxYHaQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uF8CoxYHaQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uF8CoxYHaQ .form-group {
  margin-bottom: 1rem;
}
.cid-uF8CoxYHaQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uF8CoxYHaQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uF8CoxYHaQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uF8CoxYHaQ .mbr-section-btn {
  margin: 0;
}
.cid-uF8CoxYHaQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUMHgGDKg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUMHgGDKg nav.navbar {
  position: fixed;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUMHgGDKg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUMHgGDKg .dropdown-item:hover,
.cid-ujUMHgGDKg .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:hover span {
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUMHgGDKg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUMHgGDKg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUMHgGDKg .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUMHgGDKg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUMHgGDKg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown-menu,
.cid-ujUMHgGDKg .navbar.opened {
  background: #000000 !important;
}
.cid-ujUMHgGDKg .nav-item:focus,
.cid-ujUMHgGDKg .nav-link:focus {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUMHgGDKg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUMHgGDKg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUMHgGDKg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUMHgGDKg .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUMHgGDKg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUMHgGDKg .navbar.collapsed {
  justify-content: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUMHgGDKg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUMHgGDKg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUMHgGDKg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUMHgGDKg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUMHgGDKg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUMHgGDKg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUMHgGDKg .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUMHgGDKg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown-item.active,
.cid-ujUMHgGDKg .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUMHgGDKg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUMHgGDKg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUMHgGDKg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUMHgGDKg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUMHgGDKg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg .navbar-dropdown {
  position: fixed;
}
.cid-ujUMHgGDKg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUMHgGDKg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUMHgGDKg .navbar {
    height: 70px;
  }
  .cid-ujUMHgGDKg .navbar.opened {
    height: auto;
  }
  .cid-ujUMHgGDKg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujV4L1u67g {
  background-image: url("../../../assets/images/adsz-tasarm-87-2000x1000.png");
}
.cid-ujV4L1u67g .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujV4L1u67g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujV4L1u67g .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-ujUOgwHCKs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUOgwHCKs::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUOgwHCKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUOgwHCKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUOgwHCKs .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container {
    padding: 0 22px;
  }
}
.cid-ujUOgwHCKs .row {
  position: relative;
  z-index: 1;
}
.cid-ujUOgwHCKs .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUOgwHCKs .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUOgwHCKs .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUOgwHCKs .mbr-section-title {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-text {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUOgwHCKs .list {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-desc {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact,
.cid-ujUOgwHCKs .item-contact {
  color: #ffffff;
}
.cid-uwt5O9uU1A.popup-builder {
  background-color: #ffffff;
}
.cid-uwt5O9uU1A.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwt5O9uU1A.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwt5O9uU1A .modal-content,
.cid-uwt5O9uU1A .modal-dialog {
  height: auto;
}
.cid-uwt5O9uU1A .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwt5O9uU1A .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwt5O9uU1A .form-wrapper .mbr-form .form-group,
  .cid-uwt5O9uU1A .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwt5O9uU1A .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwt5O9uU1A .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uwt5O9uU1A .mbr-text {
  text-align: center;
}
.cid-uwt5O9uU1A .pt-0 {
  padding-top: 0 !important;
}
.cid-uwt5O9uU1A .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwt5O9uU1A .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwt5O9uU1A .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwt5O9uU1A .modal-open {
  overflow: hidden;
}
.cid-uwt5O9uU1A .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwt5O9uU1A .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwt5O9uU1A .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwt5O9uU1A .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uwt5O9uU1A .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwt5O9uU1A .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwt5O9uU1A .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwt5O9uU1A .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uwt5O9uU1A .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwt5O9uU1A .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwt5O9uU1A .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwt5O9uU1A .modal-backdrop.show {
  opacity: .5;
}
.cid-uwt5O9uU1A .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uwt5O9uU1A .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwt5O9uU1A .modal-header {
    padding: 1rem;
  }
}
.cid-uwt5O9uU1A .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwt5O9uU1A .modal-header .close svg {
  fill: #353535;
}
.cid-uwt5O9uU1A .modal-header .close:hover {
  opacity: 1;
}
.cid-uwt5O9uU1A .modal-header .close:focus {
  outline: none;
}
.cid-uwt5O9uU1A .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwt5O9uU1A .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwt5O9uU1A .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwt5O9uU1A .modal-body {
    padding: 1rem;
  }
}
.cid-uwt5O9uU1A .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uwt5O9uU1A .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwt5O9uU1A .modal-footer {
    padding: 1rem;
  }
}
.cid-uwt5O9uU1A .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwt5O9uU1A .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwt5O9uU1A .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwt5O9uU1A .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwt5O9uU1A .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwt5O9uU1A .modal-lg,
  .cid-uwt5O9uU1A .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwt5O9uU1A .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwt5O9uU1A .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwt5O9uU1A .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uwt5O9uU1A .form-group {
  margin-bottom: 1rem;
}
.cid-uwt5O9uU1A .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwt5O9uU1A .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwt5O9uU1A .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uwt5O9uU1A .mbr-section-btn {
  margin: 0;
}
.cid-uwt5O9uU1A .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUMHgGDKg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUMHgGDKg nav.navbar {
  position: fixed;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUMHgGDKg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUMHgGDKg .dropdown-item:hover,
.cid-ujUMHgGDKg .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:hover span {
  color: white;
}
.cid-ujUMHgGDKg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUMHgGDKg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUMHgGDKg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUMHgGDKg .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUMHgGDKg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUMHgGDKg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown-menu,
.cid-ujUMHgGDKg .navbar.opened {
  background: #000000 !important;
}
.cid-ujUMHgGDKg .nav-item:focus,
.cid-ujUMHgGDKg .nav-link:focus {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUMHgGDKg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUMHgGDKg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUMHgGDKg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUMHgGDKg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUMHgGDKg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUMHgGDKg .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUMHgGDKg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUMHgGDKg .navbar.collapsed {
  justify-content: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUMHgGDKg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUMHgGDKg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUMHgGDKg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUMHgGDKg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUMHgGDKg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUMHgGDKg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUMHgGDKg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUMHgGDKg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUMHgGDKg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUMHgGDKg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUMHgGDKg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUMHgGDKg .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUMHgGDKg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUMHgGDKg .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-ujUMHgGDKg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUMHgGDKg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUMHgGDKg .dropdown-item.active,
.cid-ujUMHgGDKg .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUMHgGDKg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUMHgGDKg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUMHgGDKg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUMHgGDKg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUMHgGDKg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUMHgGDKg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUMHgGDKg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUMHgGDKg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUMHgGDKg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUMHgGDKg .navbar-dropdown {
  position: fixed;
}
.cid-ujUMHgGDKg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUMHgGDKg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUMHgGDKg .navbar {
    height: 70px;
  }
  .cid-ujUMHgGDKg .navbar.opened {
    height: auto;
  }
  .cid-ujUMHgGDKg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qKSDBfAnnY {
  background-image: url("../../../assets/images/leonardo-phoenix-09-a-realistic-and-nostalgic-landscape-illust-2-1472x832.jpg");
}
.cid-qKSDBfAnnY .mbr-overlay {
  background: #ffffff;
}
.cid-qKSDBfAnnY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qKSDBfAnnY .mbr-section-subtitle,
.cid-qKSDBfAnnY mbr-section-btn {
  color: #000000;
}
.cid-qKSDBfAnnY B {
  color: #333333;
}
.cid-qKSDBfAnnY H1 {
  color: #000000;
}
.cid-uGmDoHukQ9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uGmDoHukQ9 .mbr-overlay {
  background: #efefef;
}
.cid-uGmDoHukQ9 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uGmDoHukQ9 .client-name {
  color: #8d97ad;
}
.cid-uGmDoHukQ9 .wrap-img {
  padding-bottom: 1rem;
}
.cid-uGmDoHukQ9 .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uGmDoHukQ9 .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uGmDoHukQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGmDoHukQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG5hka32cD {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-uG5hka32cD .mbr-overlay {
  background: #444444;
}
.cid-uG5hka32cD .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uG5hka32cD .mbr-section-subtitle,
.cid-uG5hka32cD mbr-section-btn {
  color: #ffffff;
}
.cid-uG5hka32cD B {
  color: #333333;
}
.cid-uG5hka32cD H1 {
  color: #ffffff;
}
.cid-ujV3R5PSOu.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3R5PSOu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3R5PSOu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3R5PSOu .modal-content,
.cid-ujV3R5PSOu .modal-dialog {
  height: auto;
}
.cid-ujV3R5PSOu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3R5PSOu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3R5PSOu .form-wrapper .mbr-form .form-group,
  .cid-ujV3R5PSOu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3R5PSOu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3R5PSOu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3R5PSOu .mbr-text {
  text-align: center;
}
.cid-ujV3R5PSOu .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3R5PSOu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3R5PSOu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3R5PSOu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3R5PSOu .modal-open {
  overflow: hidden;
}
.cid-ujV3R5PSOu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3R5PSOu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3R5PSOu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3R5PSOu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3R5PSOu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3R5PSOu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3R5PSOu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3R5PSOu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3R5PSOu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3R5PSOu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3R5PSOu .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3R5PSOu .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3R5PSOu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3R5PSOu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3R5PSOu .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3R5PSOu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3R5PSOu .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3R5PSOu .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3R5PSOu .modal-header .close:focus {
  outline: none;
}
.cid-ujV3R5PSOu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3R5PSOu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3R5PSOu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3R5PSOu .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3R5PSOu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3R5PSOu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3R5PSOu .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3R5PSOu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3R5PSOu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3R5PSOu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3R5PSOu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3R5PSOu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3R5PSOu .modal-lg,
  .cid-ujV3R5PSOu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3R5PSOu .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3R5PSOu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3R5PSOu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3R5PSOu .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3R5PSOu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3R5PSOu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3R5PSOu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3R5PSOu .mbr-section-btn {
  margin: 0;
}
.cid-ujV3R5PSOu .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFp93Lou9B {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uFp93Lou9B .mbr-overlay {
  background: #efefef;
}
.cid-uFp93Lou9B .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-uFp93Lou9B .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-uFp93Lou9B .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uFp93Lou9B .mbr-text {
  color: #8d97ad;
}
.cid-uFp93Lou9B .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uFp93Lou9B .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-uFp93Lou9B .card-title {
    text-align: center;
  }
  .cid-uFp93Lou9B p.mbr-text,
  .cid-uFp93Lou9B p.date {
    text-align: center;
  }
}
.cid-uFp93Lou9B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp93Lou9B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp93Lou9B .mbr-text,
.cid-uFp93Lou9B .mbr-section-btn {
  color: #000000;
}
.cid-uFp9bGl3mR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uFp9bGl3mR .mbr-overlay {
  background: #efefef;
}
.cid-uFp9bGl3mR .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-uFp9bGl3mR .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-uFp9bGl3mR .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uFp9bGl3mR .mbr-text {
  color: #8d97ad;
}
.cid-uFp9bGl3mR .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uFp9bGl3mR .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-uFp9bGl3mR .card-title {
    text-align: center;
  }
  .cid-uFp9bGl3mR p.mbr-text,
  .cid-uFp9bGl3mR p.date {
    text-align: center;
  }
}
.cid-uFp9bGl3mR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp9bGl3mR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp9bGl3mR .mbr-text,
.cid-uFp9bGl3mR .mbr-section-btn {
  color: #000000;
}
.cid-qKSHY8QRbm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qKSHY8QRbm .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qKSHY8QRbm .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-qKSHY8QRbm .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-qKSHY8QRbm .section-text,
.cid-qKSHY8QRbm .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-qKSHY8QRbm .section-text,
  .cid-qKSHY8QRbm .card-text,
  .cid-qKSHY8QRbm .card-title,
  .cid-qKSHY8QRbm .mbr-section-title {
    text-align: center;
  }
}
.cid-qKSHY8QRbm .card-text,
.cid-qKSHY8QRbm .mbr-section-btn {
  color: #000000;
}
.cid-qKSICFwaxv {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKSICFwaxv .mbr-overlay {
  background: #efefef;
}
.cid-qKSICFwaxv .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qKSICFwaxv .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qKSICFwaxv .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qKSICFwaxv .mbr-text {
  color: #8d97ad;
}
.cid-qKSICFwaxv .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qKSICFwaxv .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qKSICFwaxv .card-title {
    text-align: center;
  }
  .cid-qKSICFwaxv p.mbr-text,
  .cid-qKSICFwaxv p.date {
    text-align: center;
  }
}
.cid-ujUOgwHCKs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUOgwHCKs::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUOgwHCKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUOgwHCKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUOgwHCKs .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .container {
    padding: 0 22px;
  }
}
.cid-ujUOgwHCKs .row {
  position: relative;
  z-index: 1;
}
.cid-ujUOgwHCKs .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUOgwHCKs .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUOgwHCKs .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUOgwHCKs .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUOgwHCKs .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUOgwHCKs .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUOgwHCKs .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUOgwHCKs .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUOgwHCKs .mbr-section-title {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-text {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUOgwHCKs .list {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-desc {
  color: #ffffff;
}
.cid-ujUOgwHCKs .mbr-contact,
.cid-ujUOgwHCKs .item-contact {
  color: #ffffff;
}
.cid-ujUOjKzMSZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujUOjKzMSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUOjKzMSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUOjKzMSZ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uHMG6UPU81 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHMG6UPU81 nav.navbar {
  position: fixed;
}
.cid-uHMG6UPU81 .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-uHMG6UPU81 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHMG6UPU81 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHMG6UPU81 .dropdown-item:hover,
.cid-uHMG6UPU81 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uHMG6UPU81 .dropdown-item:hover span {
  color: white;
}
.cid-uHMG6UPU81 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHMG6UPU81 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHMG6UPU81 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHMG6UPU81 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHMG6UPU81 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uHMG6UPU81 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHMG6UPU81 .container {
    flex-wrap: nowrap;
  }
}
.cid-uHMG6UPU81 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHMG6UPU81 .dropdown-menu,
.cid-uHMG6UPU81 .navbar.opened {
  background: #000000 !important;
}
.cid-uHMG6UPU81 .nav-item:focus,
.cid-uHMG6UPU81 .nav-link:focus {
  outline: none;
}
.cid-uHMG6UPU81 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHMG6UPU81 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHMG6UPU81 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHMG6UPU81 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHMG6UPU81 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHMG6UPU81 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHMG6UPU81 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uHMG6UPU81 .navbar.opened {
  transition: all 0.3s;
}
.cid-uHMG6UPU81 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHMG6UPU81 .navbar .navbar-logo img {
  width: auto;
}
.cid-uHMG6UPU81 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHMG6UPU81 .navbar.collapsed {
  justify-content: center;
}
.cid-uHMG6UPU81 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHMG6UPU81 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHMG6UPU81 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uHMG6UPU81 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHMG6UPU81 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHMG6UPU81 .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-uHMG6UPU81 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHMG6UPU81 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHMG6UPU81 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHMG6UPU81 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHMG6UPU81 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHMG6UPU81 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHMG6UPU81 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHMG6UPU81 .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-uHMG6UPU81 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHMG6UPU81 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHMG6UPU81 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHMG6UPU81 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHMG6UPU81 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHMG6UPU81 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHMG6UPU81 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHMG6UPU81 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHMG6UPU81 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHMG6UPU81 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHMG6UPU81 .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-uHMG6UPU81 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHMG6UPU81 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHMG6UPU81 .dropdown-item.active,
.cid-uHMG6UPU81 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHMG6UPU81 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHMG6UPU81 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHMG6UPU81 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHMG6UPU81 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uHMG6UPU81 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHMG6UPU81 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHMG6UPU81 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHMG6UPU81 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHMG6UPU81 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHMG6UPU81 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uHMG6UPU81 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHMG6UPU81 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHMG6UPU81 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHMG6UPU81 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHMG6UPU81 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHMG6UPU81 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHMG6UPU81 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHMG6UPU81 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHMG6UPU81 .navbar-dropdown {
  position: fixed;
}
.cid-uHMG6UPU81 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHMG6UPU81 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHMG6UPU81 .navbar {
    height: 70px;
  }
  .cid-uHMG6UPU81 .navbar.opened {
    height: auto;
  }
  .cid-uHMG6UPU81 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHMG6VknwP {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uHMG6VknwP .mbr-section-subtitle,
.cid-uHMG6VknwP .caption-text {
  color: #8d97ad;
}
.cid-uHMG6VknwP .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uHMG6VknwP .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uHMG6VknwP .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uHMG6VknwP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uHMItlSH0Z {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-uHMItlSH0Z .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-uHMItlSH0Z .mbr-text {
  color: #8d97ad;
}
.cid-uHMItlSH0Z .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uHMItlSH0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMItlSH0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMG6ZMNuy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uHMG6ZMNuy::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uHMG6ZMNuy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMG6ZMNuy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMG6ZMNuy .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uHMG6ZMNuy .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .container {
    padding: 0 22px;
  }
}
.cid-uHMG6ZMNuy .row {
  position: relative;
  z-index: 1;
}
.cid-uHMG6ZMNuy .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uHMG6ZMNuy .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uHMG6ZMNuy .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uHMG6ZMNuy .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHMG6ZMNuy .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uHMG6ZMNuy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHMG6ZMNuy .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uHMG6ZMNuy .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uHMG6ZMNuy .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap:hover,
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap:hover::before,
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uHMG6ZMNuy .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHMG6ZMNuy .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uHMG6ZMNuy .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHMG6ZMNuy .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uHMG6ZMNuy .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uHMG6ZMNuy .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uHMG6ZMNuy .mbr-section-title {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .mbr-text {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .list {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .mbr-contact {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .mbr-desc {
  color: #ffffff;
}
.cid-uHMG6ZMNuy .mbr-contact,
.cid-uHMG6ZMNuy .item-contact {
  color: #ffffff;
}
.cid-uHMG730Rqv.popup-builder {
  background-color: #ffffff;
}
.cid-uHMG730Rqv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uHMG730Rqv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uHMG730Rqv .modal-content,
.cid-uHMG730Rqv .modal-dialog {
  height: auto;
}
.cid-uHMG730Rqv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uHMG730Rqv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uHMG730Rqv .form-wrapper .mbr-form .form-group,
  .cid-uHMG730Rqv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uHMG730Rqv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uHMG730Rqv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHMG730Rqv .mbr-text {
  text-align: center;
}
.cid-uHMG730Rqv .pt-0 {
  padding-top: 0 !important;
}
.cid-uHMG730Rqv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uHMG730Rqv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uHMG730Rqv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uHMG730Rqv .modal-open {
  overflow: hidden;
}
.cid-uHMG730Rqv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uHMG730Rqv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uHMG730Rqv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uHMG730Rqv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uHMG730Rqv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uHMG730Rqv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uHMG730Rqv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uHMG730Rqv .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uHMG730Rqv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uHMG730Rqv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uHMG730Rqv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uHMG730Rqv .modal-backdrop.show {
  opacity: .5;
}
.cid-uHMG730Rqv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uHMG730Rqv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHMG730Rqv .modal-header {
    padding: 1rem;
  }
}
.cid-uHMG730Rqv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uHMG730Rqv .modal-header .close svg {
  fill: #353535;
}
.cid-uHMG730Rqv .modal-header .close:hover {
  opacity: 1;
}
.cid-uHMG730Rqv .modal-header .close:focus {
  outline: none;
}
.cid-uHMG730Rqv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uHMG730Rqv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uHMG730Rqv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHMG730Rqv .modal-body {
    padding: 1rem;
  }
}
.cid-uHMG730Rqv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uHMG730Rqv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHMG730Rqv .modal-footer {
    padding: 1rem;
  }
}
.cid-uHMG730Rqv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uHMG730Rqv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uHMG730Rqv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uHMG730Rqv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uHMG730Rqv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uHMG730Rqv .modal-lg,
  .cid-uHMG730Rqv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uHMG730Rqv .modal-xl {
    max-width: 1140px;
  }
}
.cid-uHMG730Rqv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uHMG730Rqv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uHMG730Rqv .form-group {
  margin-bottom: 1rem;
}
.cid-uHMG730Rqv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uHMG730Rqv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uHMG730Rqv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uHMG730Rqv .mbr-section-btn {
  margin: 0;
}
.cid-uHMG730Rqv .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFpSlTgtyD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFpSlTgtyD nav.navbar {
  position: fixed;
}
.cid-uFpSlTgtyD .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-uFpSlTgtyD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFpSlTgtyD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFpSlTgtyD .dropdown-item:hover,
.cid-uFpSlTgtyD .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFpSlTgtyD .dropdown-item:hover span {
  color: white;
}
.cid-uFpSlTgtyD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFpSlTgtyD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFpSlTgtyD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFpSlTgtyD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFpSlTgtyD .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFpSlTgtyD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFpSlTgtyD .container {
    flex-wrap: nowrap;
  }
}
.cid-uFpSlTgtyD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFpSlTgtyD .dropdown-menu,
.cid-uFpSlTgtyD .navbar.opened {
  background: #000000 !important;
}
.cid-uFpSlTgtyD .nav-item:focus,
.cid-uFpSlTgtyD .nav-link:focus {
  outline: none;
}
.cid-uFpSlTgtyD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFpSlTgtyD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFpSlTgtyD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFpSlTgtyD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFpSlTgtyD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFpSlTgtyD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFpSlTgtyD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFpSlTgtyD .navbar.opened {
  transition: all 0.3s;
}
.cid-uFpSlTgtyD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFpSlTgtyD .navbar .navbar-logo img {
  width: auto;
}
.cid-uFpSlTgtyD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFpSlTgtyD .navbar.collapsed {
  justify-content: center;
}
.cid-uFpSlTgtyD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFpSlTgtyD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFpSlTgtyD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFpSlTgtyD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFpSlTgtyD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFpSlTgtyD .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-uFpSlTgtyD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFpSlTgtyD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFpSlTgtyD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFpSlTgtyD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFpSlTgtyD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFpSlTgtyD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFpSlTgtyD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFpSlTgtyD .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-uFpSlTgtyD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFpSlTgtyD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFpSlTgtyD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFpSlTgtyD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFpSlTgtyD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFpSlTgtyD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFpSlTgtyD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFpSlTgtyD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFpSlTgtyD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFpSlTgtyD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFpSlTgtyD .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-uFpSlTgtyD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFpSlTgtyD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFpSlTgtyD .dropdown-item.active,
.cid-uFpSlTgtyD .dropdown-item:active {
  background-color: transparent;
}
.cid-uFpSlTgtyD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFpSlTgtyD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFpSlTgtyD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFpSlTgtyD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFpSlTgtyD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFpSlTgtyD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFpSlTgtyD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFpSlTgtyD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFpSlTgtyD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFpSlTgtyD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFpSlTgtyD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFpSlTgtyD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFpSlTgtyD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFpSlTgtyD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFpSlTgtyD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpSlTgtyD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFpSlTgtyD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFpSlTgtyD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpSlTgtyD .navbar-dropdown {
  position: fixed;
}
.cid-uFpSlTgtyD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFpSlTgtyD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFpSlTgtyD .navbar {
    height: 70px;
  }
  .cid-uFpSlTgtyD .navbar.opened {
    height: auto;
  }
  .cid-uFpSlTgtyD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpSlU7soK {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpSlU7soK .mbr-section-subtitle,
.cid-uFpSlU7soK .caption-text {
  color: #8d97ad;
}
.cid-uFpSlU7soK .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpSlU7soK .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpSlU7soK .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpSlU7soK .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpSlUX7fX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpSlUX7fX .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpSlUX7fX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSlUX7fX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSlVRQmc {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpSlVRQmc .mbr-section-subtitle,
.cid-uFpSlVRQmc .caption-text {
  color: #8d97ad;
}
.cid-uFpSlVRQmc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpSlVRQmc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpSlVRQmc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpSlVRQmc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpSlWRA2U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpSlWRA2U .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpSlWRA2U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSlWRA2U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSlXD8qc {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpSlXD8qc .mbr-section-subtitle,
.cid-uFpSlXD8qc .caption-text {
  color: #8d97ad;
}
.cid-uFpSlXD8qc .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpSlXD8qc .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpSlXD8qc .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpSlXD8qc .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpSlYIzvM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpSlYIzvM .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpSlYIzvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSlYIzvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSm01t6k {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpSm01t6k .mbr-section-subtitle,
.cid-uFpSm01t6k .caption-text {
  color: #8d97ad;
}
.cid-uFpSm01t6k .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpSm01t6k .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpSm01t6k .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpSm01t6k .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpSm0JLCu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpSm0JLCu .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpSm0JLCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSm0JLCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSm1Roqy {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFpSm1Roqy .mbr-section-subtitle,
.cid-uFpSm1Roqy .caption-text {
  color: #8d97ad;
}
.cid-uFpSm1Roqy .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFpSm1Roqy .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFpSm1Roqy .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFpSm1Roqy .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpSm36ihK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpSm36ihK .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpSm36ihK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSm36ihK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNCx9BTe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNCx9BTe .mbr-overlay {
  background: #efefef;
}
.cid-uHMNCx9BTe .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNCx9BTe .client-name {
  color: #8d97ad;
}
.cid-uHMNCx9BTe .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNCx9BTe .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNCx9BTe .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNCx9BTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNCx9BTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSm4yeRL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFpSm4yeRL::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFpSm4yeRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpSm4yeRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpSm4yeRL .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFpSm4yeRL .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .container {
    padding: 0 22px;
  }
}
.cid-uFpSm4yeRL .row {
  position: relative;
  z-index: 1;
}
.cid-uFpSm4yeRL .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFpSm4yeRL .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFpSm4yeRL .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFpSm4yeRL .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpSm4yeRL .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFpSm4yeRL .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFpSm4yeRL .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFpSm4yeRL .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFpSm4yeRL .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap:hover,
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap:hover::before,
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFpSm4yeRL .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpSm4yeRL .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFpSm4yeRL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFpSm4yeRL .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFpSm4yeRL .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFpSm4yeRL .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFpSm4yeRL .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFpSm4yeRL .mbr-section-title {
  color: #ffffff;
}
.cid-uFpSm4yeRL .mbr-text {
  color: #ffffff;
}
.cid-uFpSm4yeRL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFpSm4yeRL .list {
  color: #ffffff;
}
.cid-uFpSm4yeRL .mbr-contact {
  color: #ffffff;
}
.cid-uFpSm4yeRL .mbr-desc {
  color: #ffffff;
}
.cid-uFpSm4yeRL .mbr-contact,
.cid-uFpSm4yeRL .item-contact {
  color: #ffffff;
}
.cid-uFpSm6xBZ3.popup-builder {
  background-color: #ffffff;
}
.cid-uFpSm6xBZ3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFpSm6xBZ3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFpSm6xBZ3 .modal-content,
.cid-uFpSm6xBZ3 .modal-dialog {
  height: auto;
}
.cid-uFpSm6xBZ3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFpSm6xBZ3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFpSm6xBZ3 .form-wrapper .mbr-form .form-group,
  .cid-uFpSm6xBZ3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFpSm6xBZ3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFpSm6xBZ3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFpSm6xBZ3 .mbr-text {
  text-align: center;
}
.cid-uFpSm6xBZ3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uFpSm6xBZ3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFpSm6xBZ3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFpSm6xBZ3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFpSm6xBZ3 .modal-open {
  overflow: hidden;
}
.cid-uFpSm6xBZ3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFpSm6xBZ3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFpSm6xBZ3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFpSm6xBZ3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFpSm6xBZ3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFpSm6xBZ3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFpSm6xBZ3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFpSm6xBZ3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFpSm6xBZ3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFpSm6xBZ3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFpSm6xBZ3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFpSm6xBZ3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uFpSm6xBZ3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFpSm6xBZ3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpSm6xBZ3 .modal-header {
    padding: 1rem;
  }
}
.cid-uFpSm6xBZ3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFpSm6xBZ3 .modal-header .close svg {
  fill: #353535;
}
.cid-uFpSm6xBZ3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uFpSm6xBZ3 .modal-header .close:focus {
  outline: none;
}
.cid-uFpSm6xBZ3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFpSm6xBZ3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFpSm6xBZ3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpSm6xBZ3 .modal-body {
    padding: 1rem;
  }
}
.cid-uFpSm6xBZ3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFpSm6xBZ3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFpSm6xBZ3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uFpSm6xBZ3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFpSm6xBZ3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFpSm6xBZ3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFpSm6xBZ3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFpSm6xBZ3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFpSm6xBZ3 .modal-lg,
  .cid-uFpSm6xBZ3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFpSm6xBZ3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFpSm6xBZ3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFpSm6xBZ3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFpSm6xBZ3 .form-group {
  margin-bottom: 1rem;
}
.cid-uFpSm6xBZ3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFpSm6xBZ3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFpSm6xBZ3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFpSm6xBZ3 .mbr-section-btn {
  margin: 0;
}
.cid-uFpSm6xBZ3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujUUS0hP4Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujUUS0hP4Z nav.navbar {
  position: fixed;
}
.cid-ujUUS0hP4Z .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-ujUUS0hP4Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujUUS0hP4Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujUUS0hP4Z .dropdown-item:hover,
.cid-ujUUS0hP4Z .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-ujUUS0hP4Z .dropdown-item:hover span {
  color: white;
}
.cid-ujUUS0hP4Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujUUS0hP4Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujUUS0hP4Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujUUS0hP4Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujUUS0hP4Z .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujUUS0hP4Z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujUUS0hP4Z .container {
    flex-wrap: nowrap;
  }
}
.cid-ujUUS0hP4Z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujUUS0hP4Z .dropdown-menu,
.cid-ujUUS0hP4Z .navbar.opened {
  background: #000000 !important;
}
.cid-ujUUS0hP4Z .nav-item:focus,
.cid-ujUUS0hP4Z .nav-link:focus {
  outline: none;
}
.cid-ujUUS0hP4Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujUUS0hP4Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujUUS0hP4Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujUUS0hP4Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujUUS0hP4Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujUUS0hP4Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujUUS0hP4Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ujUUS0hP4Z .navbar.opened {
  transition: all 0.3s;
}
.cid-ujUUS0hP4Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujUUS0hP4Z .navbar .navbar-logo img {
  width: auto;
}
.cid-ujUUS0hP4Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujUUS0hP4Z .navbar.collapsed {
  justify-content: center;
}
.cid-ujUUS0hP4Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujUUS0hP4Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujUUS0hP4Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-ujUUS0hP4Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujUUS0hP4Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujUUS0hP4Z .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-ujUUS0hP4Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujUUS0hP4Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujUUS0hP4Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujUUS0hP4Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujUUS0hP4Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujUUS0hP4Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujUUS0hP4Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujUUS0hP4Z .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-ujUUS0hP4Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujUUS0hP4Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujUUS0hP4Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujUUS0hP4Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujUUS0hP4Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujUUS0hP4Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujUUS0hP4Z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujUUS0hP4Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujUUS0hP4Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujUUS0hP4Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujUUS0hP4Z .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-ujUUS0hP4Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujUUS0hP4Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujUUS0hP4Z .dropdown-item.active,
.cid-ujUUS0hP4Z .dropdown-item:active {
  background-color: transparent;
}
.cid-ujUUS0hP4Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujUUS0hP4Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujUUS0hP4Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujUUS0hP4Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujUUS0hP4Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujUUS0hP4Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujUUS0hP4Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujUUS0hP4Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujUUS0hP4Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujUUS0hP4Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-ujUUS0hP4Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujUUS0hP4Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUUS0hP4Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujUUS0hP4Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujUUS0hP4Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUUS0hP4Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujUUS0hP4Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujUUS0hP4Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujUUS0hP4Z .navbar-dropdown {
  position: fixed;
}
.cid-ujUUS0hP4Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujUUS0hP4Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujUUS0hP4Z .navbar {
    height: 70px;
  }
  .cid-ujUUS0hP4Z .navbar.opened {
    height: auto;
  }
  .cid-ujUUS0hP4Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujUURZOR4B {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-ujUURZOR4B .mbr-section-subtitle,
.cid-ujUURZOR4B .caption-text {
  color: #8d97ad;
}
.cid-ujUURZOR4B .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-ujUURZOR4B .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-ujUURZOR4B .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-ujUURZOR4B .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFpPxhOaQM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFpPxhOaQM .mbr-section-subtitle {
  color: #000000;
}
.cid-uFpPxhOaQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpPxhOaQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMNI124mD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMNI124mD .mbr-overlay {
  background: #efefef;
}
.cid-uHMNI124mD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMNI124mD .client-name {
  color: #8d97ad;
}
.cid-uHMNI124mD .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMNI124mD .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMNI124mD .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMNI124mD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMNI124mD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUUS4j0td {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ujUUS4j0td::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ujUUS4j0td .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujUUS4j0td .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujUUS4j0td .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-ujUUS4j0td .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .container {
    padding: 0 22px;
  }
}
.cid-ujUUS4j0td .row {
  position: relative;
  z-index: 1;
}
.cid-ujUUS4j0td .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-ujUUS4j0td .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUUS4j0td .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-ujUUS4j0td .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUUS4j0td .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujUUS4j0td .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujUUS4j0td .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-ujUUS4j0td .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-ujUUS4j0td .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap:hover,
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap:hover::before,
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-ujUUS4j0td .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUUS4j0td .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-ujUUS4j0td .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujUUS4j0td .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-ujUUS4j0td .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-ujUUS4j0td .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ujUUS4j0td .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-ujUUS4j0td .mbr-section-title {
  color: #ffffff;
}
.cid-ujUUS4j0td .mbr-text {
  color: #ffffff;
}
.cid-ujUUS4j0td .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujUUS4j0td .list {
  color: #ffffff;
}
.cid-ujUUS4j0td .mbr-contact {
  color: #ffffff;
}
.cid-ujUUS4j0td .mbr-desc {
  color: #ffffff;
}
.cid-ujUUS4j0td .mbr-contact,
.cid-ujUUS4j0td .item-contact {
  color: #ffffff;
}
.cid-ujV3UqXqIq.popup-builder {
  background-color: #ffffff;
}
.cid-ujV3UqXqIq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujV3UqXqIq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujV3UqXqIq .modal-content,
.cid-ujV3UqXqIq .modal-dialog {
  height: auto;
}
.cid-ujV3UqXqIq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujV3UqXqIq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujV3UqXqIq .form-wrapper .mbr-form .form-group,
  .cid-ujV3UqXqIq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujV3UqXqIq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujV3UqXqIq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujV3UqXqIq .mbr-text {
  text-align: center;
}
.cid-ujV3UqXqIq .pt-0 {
  padding-top: 0 !important;
}
.cid-ujV3UqXqIq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujV3UqXqIq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujV3UqXqIq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujV3UqXqIq .modal-open {
  overflow: hidden;
}
.cid-ujV3UqXqIq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujV3UqXqIq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujV3UqXqIq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujV3UqXqIq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujV3UqXqIq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujV3UqXqIq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujV3UqXqIq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujV3UqXqIq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujV3UqXqIq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujV3UqXqIq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujV3UqXqIq .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujV3UqXqIq .modal-backdrop.show {
  opacity: .5;
}
.cid-ujV3UqXqIq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujV3UqXqIq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXqIq .modal-header {
    padding: 1rem;
  }
}
.cid-ujV3UqXqIq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujV3UqXqIq .modal-header .close svg {
  fill: #353535;
}
.cid-ujV3UqXqIq .modal-header .close:hover {
  opacity: 1;
}
.cid-ujV3UqXqIq .modal-header .close:focus {
  outline: none;
}
.cid-ujV3UqXqIq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujV3UqXqIq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujV3UqXqIq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXqIq .modal-body {
    padding: 1rem;
  }
}
.cid-ujV3UqXqIq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujV3UqXqIq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujV3UqXqIq .modal-footer {
    padding: 1rem;
  }
}
.cid-ujV3UqXqIq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujV3UqXqIq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujV3UqXqIq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujV3UqXqIq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujV3UqXqIq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujV3UqXqIq .modal-lg,
  .cid-ujV3UqXqIq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujV3UqXqIq .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujV3UqXqIq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujV3UqXqIq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujV3UqXqIq .form-group {
  margin-bottom: 1rem;
}
.cid-ujV3UqXqIq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujV3UqXqIq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujV3UqXqIq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujV3UqXqIq .mbr-section-btn {
  margin: 0;
}
.cid-ujV3UqXqIq .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFqkj5tRFB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFqkj5tRFB nav.navbar {
  position: fixed;
}
.cid-uFqkj5tRFB .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-uFqkj5tRFB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFqkj5tRFB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFqkj5tRFB .dropdown-item:hover,
.cid-uFqkj5tRFB .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uFqkj5tRFB .dropdown-item:hover span {
  color: white;
}
.cid-uFqkj5tRFB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFqkj5tRFB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFqkj5tRFB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFqkj5tRFB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFqkj5tRFB .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uFqkj5tRFB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFqkj5tRFB .container {
    flex-wrap: nowrap;
  }
}
.cid-uFqkj5tRFB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFqkj5tRFB .dropdown-menu,
.cid-uFqkj5tRFB .navbar.opened {
  background: #000000 !important;
}
.cid-uFqkj5tRFB .nav-item:focus,
.cid-uFqkj5tRFB .nav-link:focus {
  outline: none;
}
.cid-uFqkj5tRFB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFqkj5tRFB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFqkj5tRFB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFqkj5tRFB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFqkj5tRFB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFqkj5tRFB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFqkj5tRFB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uFqkj5tRFB .navbar.opened {
  transition: all 0.3s;
}
.cid-uFqkj5tRFB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFqkj5tRFB .navbar .navbar-logo img {
  width: auto;
}
.cid-uFqkj5tRFB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFqkj5tRFB .navbar.collapsed {
  justify-content: center;
}
.cid-uFqkj5tRFB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFqkj5tRFB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFqkj5tRFB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uFqkj5tRFB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFqkj5tRFB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFqkj5tRFB .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-uFqkj5tRFB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFqkj5tRFB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFqkj5tRFB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFqkj5tRFB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFqkj5tRFB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFqkj5tRFB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFqkj5tRFB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFqkj5tRFB .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-uFqkj5tRFB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFqkj5tRFB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFqkj5tRFB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFqkj5tRFB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFqkj5tRFB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFqkj5tRFB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFqkj5tRFB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFqkj5tRFB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFqkj5tRFB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFqkj5tRFB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFqkj5tRFB .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-uFqkj5tRFB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFqkj5tRFB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFqkj5tRFB .dropdown-item.active,
.cid-uFqkj5tRFB .dropdown-item:active {
  background-color: transparent;
}
.cid-uFqkj5tRFB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFqkj5tRFB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFqkj5tRFB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFqkj5tRFB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uFqkj5tRFB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFqkj5tRFB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFqkj5tRFB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFqkj5tRFB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFqkj5tRFB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFqkj5tRFB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uFqkj5tRFB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFqkj5tRFB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqkj5tRFB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFqkj5tRFB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFqkj5tRFB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqkj5tRFB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFqkj5tRFB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFqkj5tRFB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFqkj5tRFB .navbar-dropdown {
  position: fixed;
}
.cid-uFqkj5tRFB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFqkj5tRFB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFqkj5tRFB .navbar {
    height: 70px;
  }
  .cid-uFqkj5tRFB .navbar.opened {
    height: auto;
  }
  .cid-uFqkj5tRFB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFqkj60neC {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f4f8fa;
}
.cid-uFqkj60neC .mbr-section-subtitle,
.cid-uFqkj60neC .caption-text {
  color: #8d97ad;
}
.cid-uFqkj60neC .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-uFqkj60neC .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uFqkj60neC .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-uFqkj60neC .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uFqkj6Gtcr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFqkj6Gtcr .mbr-section-subtitle {
  color: #000000;
}
.cid-uFqkj6Gtcr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqkj6Gtcr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMN0Vhoed {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHMN0Vhoed .mbr-overlay {
  background: #efefef;
}
.cid-uHMN0Vhoed .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uHMN0Vhoed .client-name {
  color: #8d97ad;
}
.cid-uHMN0Vhoed .wrap-img {
  padding-bottom: 1rem;
}
.cid-uHMN0Vhoed .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-uHMN0Vhoed .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uHMN0Vhoed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMN0Vhoed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqkj7zvsY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uFqkj7zvsY::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uFqkj7zvsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqkj7zvsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqkj7zvsY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uFqkj7zvsY .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .container {
    padding: 0 22px;
  }
}
.cid-uFqkj7zvsY .row {
  position: relative;
  z-index: 1;
}
.cid-uFqkj7zvsY .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uFqkj7zvsY .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqkj7zvsY .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uFqkj7zvsY .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqkj7zvsY .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFqkj7zvsY .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFqkj7zvsY .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uFqkj7zvsY .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uFqkj7zvsY .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap:hover,
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap:hover::before,
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uFqkj7zvsY .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqkj7zvsY .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uFqkj7zvsY .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uFqkj7zvsY .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uFqkj7zvsY .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uFqkj7zvsY .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uFqkj7zvsY .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uFqkj7zvsY .mbr-section-title {
  color: #ffffff;
}
.cid-uFqkj7zvsY .mbr-text {
  color: #ffffff;
}
.cid-uFqkj7zvsY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqkj7zvsY .list {
  color: #ffffff;
}
.cid-uFqkj7zvsY .mbr-contact {
  color: #ffffff;
}
.cid-uFqkj7zvsY .mbr-desc {
  color: #ffffff;
}
.cid-uFqkj7zvsY .mbr-contact,
.cid-uFqkj7zvsY .item-contact {
  color: #ffffff;
}
.cid-uFqkj8Za02.popup-builder {
  background-color: #ffffff;
}
.cid-uFqkj8Za02.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFqkj8Za02.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFqkj8Za02 .modal-content,
.cid-uFqkj8Za02 .modal-dialog {
  height: auto;
}
.cid-uFqkj8Za02 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFqkj8Za02 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFqkj8Za02 .form-wrapper .mbr-form .form-group,
  .cid-uFqkj8Za02 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFqkj8Za02 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFqkj8Za02 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFqkj8Za02 .mbr-text {
  text-align: center;
}
.cid-uFqkj8Za02 .pt-0 {
  padding-top: 0 !important;
}
.cid-uFqkj8Za02 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFqkj8Za02 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFqkj8Za02 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFqkj8Za02 .modal-open {
  overflow: hidden;
}
.cid-uFqkj8Za02 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFqkj8Za02 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFqkj8Za02 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFqkj8Za02 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFqkj8Za02 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFqkj8Za02 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFqkj8Za02 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFqkj8Za02 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uFqkj8Za02 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFqkj8Za02 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFqkj8Za02 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFqkj8Za02 .modal-backdrop.show {
  opacity: .5;
}
.cid-uFqkj8Za02 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFqkj8Za02 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqkj8Za02 .modal-header {
    padding: 1rem;
  }
}
.cid-uFqkj8Za02 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFqkj8Za02 .modal-header .close svg {
  fill: #353535;
}
.cid-uFqkj8Za02 .modal-header .close:hover {
  opacity: 1;
}
.cid-uFqkj8Za02 .modal-header .close:focus {
  outline: none;
}
.cid-uFqkj8Za02 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uFqkj8Za02 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFqkj8Za02 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqkj8Za02 .modal-body {
    padding: 1rem;
  }
}
.cid-uFqkj8Za02 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFqkj8Za02 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqkj8Za02 .modal-footer {
    padding: 1rem;
  }
}
.cid-uFqkj8Za02 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFqkj8Za02 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFqkj8Za02 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFqkj8Za02 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFqkj8Za02 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFqkj8Za02 .modal-lg,
  .cid-uFqkj8Za02 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFqkj8Za02 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFqkj8Za02 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFqkj8Za02 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFqkj8Za02 .form-group {
  margin-bottom: 1rem;
}
.cid-uFqkj8Za02 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFqkj8Za02 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFqkj8Za02 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFqkj8Za02 .mbr-section-btn {
  margin: 0;
}
.cid-uFqkj8Za02 .mbr-section-btn .btn {
  margin: 0;
}
